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

Commit 4092352a authored by Tony Wickham's avatar Tony Wickham Committed by Android (Google) Code Review
Browse files

Merge "Add debug log for initInputMonitor()" into sc-dev

parents aa47630e ed8f264f
Loading
Loading
Loading
Loading
+7 −1
Original line number Original line Diff line number Diff line
@@ -290,7 +290,13 @@ public class TouchInteractionService extends Service implements PluginListener<O


    private void initInputMonitor() {
    private void initInputMonitor() {
        disposeEventHandlers();
        disposeEventHandlers();
        if (mDeviceState.isButtonNavMode() || !SystemUiProxy.INSTANCE.get(this).isActive()) {

        if (TestProtocol.sDebugTracing) {
            Log.d(TestProtocol.TIS_NO_EVENTS, "initInputMonitor: isButtonMode? "
                    + mDeviceState.isButtonNavMode());
        }

        if (mDeviceState.isButtonNavMode()) {
            return;
            return;
        }
        }


+1 −0
Original line number Original line Diff line number Diff line
@@ -106,4 +106,5 @@ public final class TestProtocol {
    public static final String OVERIEW_NOT_ALLAPPS = "b/156095088";
    public static final String OVERIEW_NOT_ALLAPPS = "b/156095088";
    public static final String NO_SWIPE_TO_HOME = "b/158017601";
    public static final String NO_SWIPE_TO_HOME = "b/158017601";
    public static final String WORK_PROFILE_REMOVED = "b/159671700";
    public static final String WORK_PROFILE_REMOVED = "b/159671700";
    public static final String TIS_NO_EVENTS = "b/180915942";
}
}