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

Commit 48468035 authored by Svet Ganov's avatar Svet Ganov Committed by Svetoslav Ganov
Browse files

Address missed comments from previous CL

bug:153826463

Test: atest android.widget.cts.inline.InlineContentViewTest#testReparenting

Change-Id: Iddb1f4d2e0b7043517616d0ec3678a55f9eda34c
parent f8b9ddea
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -229,7 +229,7 @@ public final class SurfaceControl implements Parcelable {
            int transformHint);

    @Nullable
    @GuardedBy("sLock")
    @GuardedBy("mLock")
    private ArrayList<OnReparentListener> mReparentListeners;

    /**
+1 −1
Original line number Diff line number Diff line
@@ -1231,7 +1231,7 @@ public class SurfaceView extends View implements ViewRootImpl.SurfaceChangedCall
            float postScaleX, float postScaleY) {
        transaction.setPosition(surface, positionLeft, positionTop);
        transaction.setMatrix(surface, postScaleX /*dsdx*/, 0f /*dtdx*/,
                0f /*dsdy*/, postScaleY /*dtdy*/);
                0f /*dtdy*/, postScaleY /*dsdy*/);
    }

    /** @hide */
+1 −2
Original line number Diff line number Diff line
@@ -156,8 +156,7 @@ public class InlineContentView extends ViewGroup {
        @Override
        public void onDraw() {
            computeParentPositionAndScale();
            final int visibility = InlineContentView.this.isShown() ? VISIBLE : GONE;
            mSurfaceView.setVisibility(visibility);
            mSurfaceView.setVisibility(VISIBLE);
        }
    };