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

Commit 19eb76b9 authored by Automerger Merge Worker's avatar Automerger Merge Worker Committed by Android (Google) Code Review
Browse files

Merge "Merge "Address missed comments from previous CL" into rvc-dev am:...

Merge "Merge "Address missed comments from previous CL" into rvc-dev am: dab5588e am: d00340e1" into rvc-d1-dev-plus-aosp
parents ca3ce05d fb3d4a24
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);
        }
    };