Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9d3a6121 authored by Winson Chung's avatar Winson Chung Committed by Android (Google) Code Review
Browse files

Merge "Amend callsite of SurfaceControl instantiation." into main

parents c5149ac9 88199098
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -175,6 +175,7 @@ public class ShellTaskOrganizer extends TaskOrganizer implements
            .setName("home_task_overlay_container")
            .setContainerLayer()
            .setHidden(false)
            .setCallsite("ShellTaskOrganizer.mHomeTaskOverlayContainer")
            .build();

    /**
+1 −0
Original line number Diff line number Diff line
@@ -223,6 +223,7 @@ public class DesktopModeVisualIndicator {
        mLeash = builder
                .setName("Desktop Mode Visual Indicator")
                .setContainerLayer()
                .setCallsite("DesktopModeVisualIndicator.createView")
                .build();
        t.show(mLeash);
        final WindowManager.LayoutParams lp =
+1 −0
Original line number Diff line number Diff line
@@ -675,6 +675,7 @@ public class PipTransition extends PipTransitionController {
                    .setContainerLayer()
                    .setHidden(false)
                    .setParent(root.getLeash())
                    .setCallsite("PipTransition.startExitAnimation")
                    .build();
            startTransaction.reparent(activitySurface, pipLeash);
            // Put the activity at local position with offset in case it is letterboxed.
+1 −0
Original line number Diff line number Diff line
@@ -233,6 +233,7 @@ public class TvPipTransition extends PipTransitionController {
                                .setContainerLayer()
                                .setHidden(false)
                                .setParent(root.getLeash())
                                .setCallsite("TvPipTransition.startAnimation")
                                .build();
                        startTransaction.reparent(activitySurface, pipLeash);
                        // Put the activity at local position with offset in case it is letterboxed.
+1 −0
Original line number Diff line number Diff line
@@ -280,6 +280,7 @@ public class TransitionAnimationHelper {
                .setParent(rootLeash)
                .setColorLayer()
                .setOpaque(true)
                .setCallsite("TransitionAnimationHelper.addBackgroundToTransition")
                .build();
        startTransaction
                .setLayer(animationBackgroundSurface, Integer.MIN_VALUE)
Loading