diff options
| author | 2023-05-30 12:50:39 -0400 | |
|---|---|---|
| committer | 2023-05-30 15:44:23 -0400 | |
| commit | f10dd4927f6ec4117c8a2652f5956fdf34e2cee8 (patch) | |
| tree | 108a06f9b37d9bfdf99aa2863c8e8276f22e5003 | |
| parent | 1f12daa2668145ef552dd3cf42689bff4d2623e5 (diff) | |
Remove CentralSurfacesImpl.getNotificationShadeWindowView
Fixes: 284332422
Test: manual
Test: run and fix affected unit tests
Change-Id: I00560078975df25309da558cdfdba132b609dab1
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfaces.java | 3 | ||||
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java | 5 |
2 files changed, 0 insertions, 8 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfaces.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfaces.java index e23ac7d352ac..b470bc08e4fc 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfaces.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfaces.java @@ -48,7 +48,6 @@ import com.android.systemui.navigationbar.NavigationBarView; import com.android.systemui.plugins.ActivityStarter.OnDismissAction; import com.android.systemui.plugins.statusbar.NotificationSwipeActionHelper; import com.android.systemui.qs.QSPanelController; -import com.android.systemui.shade.NotificationShadeWindowView; import com.android.systemui.shade.NotificationShadeWindowViewController; import com.android.systemui.shade.ShadeViewController; import com.android.systemui.shared.system.RemoteAnimationRunnerCompat; @@ -218,8 +217,6 @@ public interface CentralSurfaces extends Dumpable, LifecycleOwner { */ void wakeUpIfDozing(long time, String why, @PowerManager.WakeReason int wakeReason); - NotificationShadeWindowView getNotificationShadeWindowView(); - NotificationShadeWindowViewController getNotificationShadeWindowViewController(); /** */ diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java index 9f8096213ca0..b838d06ae568 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java @@ -1744,11 +1744,6 @@ public class CentralSurfacesImpl implements CoreStartable, CentralSurfaces { } @Override - public NotificationShadeWindowView getNotificationShadeWindowView() { - return mNotificationShadeWindowView; - } - - @Override public NotificationShadeWindowViewController getNotificationShadeWindowViewController() { return mNotificationShadeWindowViewController; } |