Skip to content

Commit

Permalink
Make ReplayState internal
Browse files Browse the repository at this point in the history
  • Loading branch information
romtsn committed Feb 3, 2025
1 parent ce7142a commit 77d7a43
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
11 changes: 0 additions & 11 deletions sentry-android-replay/api/sentry-android-replay.api
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,6 @@ public final class io/sentry/android/replay/ReplayIntegration : android/content/
public fun stop ()V
}

public final class io/sentry/android/replay/ReplayState : java/lang/Enum {
public static final field CLOSED Lio/sentry/android/replay/ReplayState;
public static final field INITIAL Lio/sentry/android/replay/ReplayState;
public static final field PAUSED Lio/sentry/android/replay/ReplayState;
public static final field RESUMED Lio/sentry/android/replay/ReplayState;
public static final field STARTED Lio/sentry/android/replay/ReplayState;
public static final field STOPPED Lio/sentry/android/replay/ReplayState;
public static fun valueOf (Ljava/lang/String;)Lio/sentry/android/replay/ReplayState;
public static fun values ()[Lio/sentry/android/replay/ReplayState;
}

public abstract interface class io/sentry/android/replay/ScreenshotRecorderCallback {
public abstract fun onScreenshotRecorded (Landroid/graphics/Bitmap;)V
public abstract fun onScreenshotRecorded (Ljava/io/File;J)V
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.sentry.android.replay

enum class ReplayState {
internal enum class ReplayState {
/**
* Initial state of a Replay session. This is the state when ReplayIntegration is constructed
* but has not been started yet.
Expand Down

0 comments on commit 77d7a43

Please sign in to comment.