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

Commit 48d3ea38 authored by Yunfan Chen's avatar Yunfan Chen
Browse files

Revert "Revert "Improve readability of the insets related dump""

This reverts commit 19125ed5.

The test turned green before the revert landed. Also, verified both locally and on cuttlefish, neither of them experience the test failure.

Reason for revert: The patch didn't break the test.

Change-Id: I7227b5538a3ab654c33cd8299cfb28b7cc67bffb
parent 19125ed5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -323,7 +323,8 @@ public class InsetsFrameProvider implements Parcelable {
        public String toString() {
            StringBuilder sb = new StringBuilder(32);
            sb.append("TypedInsetsSize: {");
            sb.append("windowType=").append(windowType);
            sb.append("windowType=").append(ViewDebug.intToString(
                    WindowManager.LayoutParams.class, "type", windowType));
            sb.append(", insetsSize=").append(insetsSize);
            sb.append("}");
            return sb.toString();
+8 −6
Original line number Diff line number Diff line
@@ -4737,10 +4737,10 @@ public interface WindowManager extends ViewManager {
            }
            if (providedInsets != null) {
                sb.append(System.lineSeparator());
                sb.append(" providedInsets=");
                sb.append(prefix).append("  providedInsets:");
                for (int i = 0; i < providedInsets.length; ++i) {
                    if (i > 0) sb.append(' ');
                    sb.append((providedInsets[i]));
                    sb.append(System.lineSeparator());
                    sb.append(prefix).append("    ").append(providedInsets[i]);
                }
            }
            if (insetsRoundedCornerFrame) {
@@ -4749,10 +4749,12 @@ public interface WindowManager extends ViewManager {
            }
            if (paramsForRotation != null && paramsForRotation.length != 0) {
                sb.append(System.lineSeparator());
                sb.append(prefix).append("  paramsForRotation=");
                sb.append(prefix).append("  paramsForRotation:");
                for (int i = 0; i < paramsForRotation.length; ++i) {
                    if (i > 0) sb.append(' ');
                    sb.append(paramsForRotation[i].toString());
                    // Additional prefix needed for the beginning of the params of the new rotation.
                    sb.append(System.lineSeparator()).append(prefix).append("    ");
                    sb.append(Surface.rotationToString(i)).append("=");
                    sb.append(paramsForRotation[i].toString(prefix + "    "));
                }
            }

+3 −3
Original line number Diff line number Diff line
@@ -6700,12 +6700,12 @@ public class WindowManagerService extends IWindowManager.Stub
            pw.print("  mDisplayFrozen="); pw.print(mDisplayFrozen);
                    pw.print(" windows="); pw.print(mWindowsFreezingScreen);
                    pw.print(" client="); pw.print(mClientFreezingScreen);
                    pw.print(" apps="); pw.print(mAppsFreezingScreen);
                    pw.print(" apps="); pw.println(mAppsFreezingScreen);
            final DisplayContent defaultDisplayContent = getDefaultDisplayContentLocked();
            pw.print("  mRotation="); pw.print(defaultDisplayContent.getRotation());
            pw.print("  mRotation="); pw.println(defaultDisplayContent.getRotation());
            pw.print("  mLastOrientation=");
                    pw.println(defaultDisplayContent.getLastOrientation());
            pw.print(" waitingForConfig=");
            pw.print("  mWaitingForConfig=");
                    pw.println(defaultDisplayContent.mWaitingForConfig);

            pw.print("  Animation settings: disabled="); pw.print(mAnimationsDisabled);