commit | 3025fb5c8d3d05c0f50452d3071030675e622d31 | [log] [tgz] |
---|---|---|
author | Jorim Jaggi <jjaggi@google.com> | Fri Mar 16 14:15:45 2018 +0100 |
committer | Jorim Jaggi <jjaggi@google.com> | Fri Mar 16 14:15:45 2018 +0100 |
tree | 1471f9b1afc9fb4dbac810ab86cd3e5ad858966a | |
parent | 33b48e28820ad01d892033a1d34975d99c9502c4 [diff] |
Import new lib Bug: 73498721 Change-Id: Ia9d2bd49d69d566b75355fe12b7127434f18079d
diff --git a/quickstep/libs/sysui_shared.jar b/quickstep/libs/sysui_shared.jar index 9006831..33987e2 100644 --- a/quickstep/libs/sysui_shared.jar +++ b/quickstep/libs/sysui_shared.jar Binary files differ
diff --git a/quickstep/src/com/android/quickstep/OtherActivityTouchConsumer.java b/quickstep/src/com/android/quickstep/OtherActivityTouchConsumer.java index c96f6d7..93e4cc9 100644 --- a/quickstep/src/com/android/quickstep/OtherActivityTouchConsumer.java +++ b/quickstep/src/com/android/quickstep/OtherActivityTouchConsumer.java
@@ -205,11 +205,6 @@ } // Notify the handler that the gesture has actually started mInteractionHandler.onGestureStarted(); - - // Notify the system that we have started tracking the event - if (mISystemUiProxy != null) { - executeSafely(mISystemUiProxy::onRecentsAnimationStarted); - } } private boolean isNavBarOnRight() {
diff --git a/quickstep/src/com/android/quickstep/TouchInteractionService.java b/quickstep/src/com/android/quickstep/TouchInteractionService.java index 1d25fc2..ecd6c26 100644 --- a/quickstep/src/com/android/quickstep/TouchInteractionService.java +++ b/quickstep/src/com/android/quickstep/TouchInteractionService.java
@@ -153,6 +153,11 @@ mOverviewCommandHelper.onOverviewHidden(); } } + + @Override + public void onQuickStep(MotionEvent motionEvent) throws RemoteException { + + } }; private final TouchConsumer mNoOpTouchConsumer = (ev) -> {};