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

Commit 8779a53c authored by Tony Huang's avatar Tony Huang Committed by Android (Google) Code Review
Browse files

Merge "Migrate OneHanded to WM shell (3/n)"

parents df66a978 29cefc77
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -28,7 +28,6 @@ import com.android.systemui.car.window.SystemUIOverlayWindowManager;
import com.android.systemui.globalactions.GlobalActionsComponent;
import com.android.systemui.keyguard.KeyguardViewMediator;
import com.android.systemui.keyguard.dagger.KeyguardModule;
import com.android.systemui.onehanded.OneHandedUI;
import com.android.systemui.power.PowerUI;
import com.android.systemui.recents.Recents;
import com.android.systemui.recents.RecentsModule;
@@ -94,12 +93,6 @@ public abstract class CarSystemUIBinder {
    @ClassKey(LatencyTester.class)
    public abstract SystemUI bindLatencyTester(LatencyTester sysui);

    /** Inject into OneHandedUI. */
    @Binds
    @IntoMap
    @ClassKey(OneHandedUI.class)
    public abstract SystemUI bindOneHandedUI(OneHandedUI sysui);

    /** Inject into PowerUI. */
    @Binds
    @IntoMap
+0 −4
Original line number Diff line number Diff line
@@ -111,10 +111,6 @@ Plays ringtones.

Shows UI for keyboard shortcuts (triggered by keyboard shortcut).

### [com.android.systemui.onehanded.OneHandedUI](/packages/SystemUI/src/com/android/systemui/onehanded/OneHandedUI.java)

Shows the overlay controls when One handed is triggered.

### [com.android.systemui.shortcut.ShortcutKeyDispatcher](/packages/SystemUI/src/com/android/systemui/shortcut/ShortcutKeyDispatcher.java)

Dispatches shortcut to System UI components.
+0 −1
Original line number Diff line number Diff line
@@ -39,7 +39,6 @@
        <item>com.android.systemui.SizeCompatModeActivityController</item>
        <item>com.android.systemui.statusbar.notification.InstantAppNotifier</item>
        <item>com.android.systemui.toast.ToastUI</item>
        <item>com.android.systemui.onehanded.OneHandedUI</item>
        <item>com.android.systemui.wmshell.WMShell</item>
    </string-array>

+0 −1
Original line number Diff line number Diff line
@@ -320,7 +320,6 @@
        <item>com.android.systemui.accessibility.WindowMagnification</item>
        <item>com.android.systemui.accessibility.SystemActions</item>
        <item>com.android.systemui.toast.ToastUI</item>
        <item>com.android.systemui.onehanded.OneHandedUI</item>
        <item>com.android.systemui.wmshell.WMShell</item>
    </string-array>

+0 −7
Original line number Diff line number Diff line
@@ -28,7 +28,6 @@ import com.android.systemui.bubbles.dagger.BubbleModule;
import com.android.systemui.globalactions.GlobalActionsComponent;
import com.android.systemui.keyguard.KeyguardViewMediator;
import com.android.systemui.keyguard.dagger.KeyguardModule;
import com.android.systemui.onehanded.OneHandedUI;
import com.android.systemui.power.PowerUI;
import com.android.systemui.recents.Recents;
import com.android.systemui.recents.RecentsModule;
@@ -90,12 +89,6 @@ public abstract class SystemUIBinder {
    @ClassKey(LatencyTester.class)
    public abstract SystemUI bindLatencyTester(LatencyTester sysui);

    /** Inject into OneHandedUI. */
    @Binds
    @IntoMap
    @ClassKey(OneHandedUI.class)
    public abstract SystemUI bindOneHandedUI(OneHandedUI sysui);

    /** Inject into PowerUI. */
    @Binds
    @IntoMap
Loading