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

Commit e20c99fc authored by Riddle Hsu's avatar Riddle Hsu
Browse files

Remove enabled flag scheduling_for_notification_shade

Bug: 409606498
Flag: EXEMPT flag removal
Test: NotificationShadeWindowControllerImplTest
Change-Id: I7a9249a60d8ea8fbacf47eb0b1663846d7330b5b
parent a08a0293
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
@@ -257,9 +257,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()