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

Commit 9e8ce104 authored by Android Build Merger (Role)'s avatar Android Build Merger (Role) Committed by Android (Google) Code Review
Browse files

Merge "Merge "Insert missing breaks" into oc-dev am: 88db7b39" into oc-dev-plus-aosp

parents 388fb093 21664ced
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -254,8 +254,7 @@ class ActivityMetricsLogger {
     *                       ActivityManagerInternal.APP_TRANSITION_* reasons.
     */
    void notifyTransitionStarting(SparseIntArray stackIdReasons) {
        // TODO (b/36339388): Figure out why stackIdReasons can be null
        if (stackIdReasons == null || !isAnyTransitionActive() || mLoggedTransitionStarting) {
        if (!isAnyTransitionActive() || mLoggedTransitionStarting) {
            return;
        }
        mCurrentTransitionDelayMs = calculateCurrentDelay();
+3 −0
Original line number Diff line number Diff line
@@ -5035,6 +5035,7 @@ public class WindowManagerService extends IWindowManager.Stub
                    if (callback != null) {
                        callback.run();
                    }
                    break;
                }
                case NEW_ANIMATOR_SCALE: {
                    float scale = getCurrentAnimatorScale();
@@ -5087,6 +5088,7 @@ public class WindowManagerService extends IWindowManager.Stub
                        }
                    }
                }
                break;
                case UPDATE_DOCKED_STACK_DIVIDER: {
                    synchronized (mWindowMap) {
                        final DisplayContent displayContent = getDefaultDisplayContentLocked();
@@ -5104,6 +5106,7 @@ public class WindowManagerService extends IWindowManager.Stub
                        mWindowReplacementTimeouts.clear();
                    }
                }
                break;
                case NOTIFY_APP_TRANSITION_STARTING: {
                    mAmInternal.notifyAppTransitionStarting((SparseIntArray) msg.obj);
                }