You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dd-sdk-android-internal/api/dd-sdk-android-internal.api
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1046,6 +1046,7 @@ public final class com/datadog/android/internal/sessionreplay/composition/Captur
1046
1046
public abstract interface class com/datadog/android/internal/sessionreplay/composition/CompositionIdentityFactory {
1047
1047
public abstract fun composeHost (Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;Ljava/lang/String;)Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;
1048
1048
public abstract fun composeNode (Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;Ljava/lang/String;)Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;
1049
+
public abstract fun imageWireframe (Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;)Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;
1049
1050
public abstract fun placeholderWireframe (Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;)Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;
1050
1051
public abstract fun shapeWireframe (Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;)Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;
1051
1052
public abstract fun textWireframe (Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;)Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;
Copy file name to clipboardExpand all lines: dd-sdk-android-internal/src/main/java/com/datadog/android/internal/sessionreplay/composition/CapturedIdentity.kt
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -109,10 +109,13 @@ data class CapturedIdentity(
109
109
* `com.datadog.android.sessionreplay.recorder.composition.CompositionHostDecomposer`) - using the
110
110
* same factory instance the native View walker uses, so every identity stays collision-free and
111
111
* correctly scoped without a separate id space. Narrowed to only the identity kinds a Compose
112
-
* decomposer may legitimately mint - notably no `imageWireframe`/`webViewWireframe`, since it must
113
-
* never construct a [CapturedWireframe.Pixel] or [CapturedWireframe.WebView].
114
-
* `dd-sdk-android-session-replay`'s internal `CapturedIdentityFactory` extends this with the rest
Copy file name to clipboardExpand all lines: features/dd-sdk-android-session-replay-compose/src/main/kotlin/com/datadog/android/sessionreplay/compose/internal/granular/GranularComposeDecomposer.kt
Copy file name to clipboardExpand all lines: features/dd-sdk-android-session-replay-compose/src/test/kotlin/com/datadog/android/sessionreplay/compose/internal/granular/GranularComposeDecomposerTest.kt
0 commit comments