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

Commit 20fcf43d authored by Riddle Hsu's avatar Riddle Hsu Committed by Android (Google) Code Review
Browse files

Merge "Remove enabled flag scheduling_for_notification_shade" into main

parents 1de9e82b e20c99fc
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -217,17 +217,6 @@ flag {
  }
}

flag {
  name: "scheduling_for_notification_shade"
  namespace: "windowing_frontend"
  description: "Demote top-app when notification shade is expanded"
  bug: "362467878"
  is_fixed_read_only: true
  metadata {
    purpose: PURPOSE_BUGFIX
  }
}

flag {
    name: "release_snapshot_aggressively"
    namespace: "windowing_frontend"
+2 −3
Original line number Diff line number Diff line
@@ -258,9 +258,8 @@ public class NotificationShadeWindowControllerImpl implements NotificationShadeW
            mCurrentState.shadeOrQsExpanded = isExpanded;
            apply(mCurrentState);

            final IBinder token;
            if (com.android.window.flags.Flags.schedulingForNotificationShade()
                    && (token = mWindowRootView.getWindowToken()) != null) {
            final IBinder token = mWindowRootView.getWindowToken();
            if (token != null) {
                mBackgroundExecutor.execute(() -> {
                    try {
                        WindowManagerGlobal.getWindowManagerService()