commit | f558e875f168d97453d71ad95026c63a7fc1149e | [log] [tgz] |
---|---|---|
author | Winson Chung <winsonc@google.com> | Thu Apr 11 08:51:12 2019 -0700 |
committer | android-build-merger <android-build-merger@google.com> | Thu Apr 11 08:51:12 2019 -0700 |
tree | dd1e900a09db7d7a26f8ef080df0753807dbb380 | |
parent | 52e19b150b6f7a869c7c63e8e4c239628d7524c8 [diff] | |
parent | 5e95b62f90be1f8367f84779b1e3297567f65200 [diff] |
Merge "Add state callback in launcher" into qt-dev am: 85011bdc21 am: 5e95b62f90 Change-Id: Id542f047afb95cf28b7cad26e3d1ceda3fa72222
diff --git a/go/quickstep/src/com/android/quickstep/TouchInteractionService.java b/go/quickstep/src/com/android/quickstep/TouchInteractionService.java index 734425e..39f8448 100644 --- a/go/quickstep/src/com/android/quickstep/TouchInteractionService.java +++ b/go/quickstep/src/com/android/quickstep/TouchInteractionService.java
@@ -88,6 +88,10 @@ boolean gestureSwipeLeft) { } + public void onSystemUiStateChanged(int stateFlags) { + // To be implemented + } + /** Deprecated methods **/ public void onQuickStep(MotionEvent motionEvent) { }
diff --git a/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java b/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java index 3ea8de0..e591177 100644 --- a/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java +++ b/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java
@@ -159,6 +159,10 @@ isButton, gestureSwipeLeft, activityControl.getContainerType()); } + public void onSystemUiStateChanged(int stateFlags) { + // To be implemented + } + /** Deprecated methods **/ public void onQuickStep(MotionEvent motionEvent) { }