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
@@ -1034,6 +1034,7 @@ public final class com/datadog/android/internal/sessionreplay/composition/Captur
1034
1034
public abstract interface class com/datadog/android/internal/sessionreplay/composition/CompositionIdentityFactory {
1035
1035
public abstract fun composeHost (Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;Ljava/lang/String;)Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;
1036
1036
public abstract fun composeNode (Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;Ljava/lang/String;)Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;
1037
+
public abstract fun imageWireframe (Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;)Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;
1037
1038
public abstract fun placeholderWireframe (Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;)Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;
1038
1039
public abstract fun shapeWireframe (Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;)Lcom/datadog/android/internal/sessionreplay/composition/CapturedIdentity;
1039
1040
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