commit | 5e95b62f90be1f8367f84779b1e3297567f65200 | [log] [tgz] |
---|---|---|
author | Winson Chung <winsonc@google.com> | Thu Apr 11 08:41:21 2019 -0700 |
committer | android-build-merger <android-build-merger@google.com> | Thu Apr 11 08:41:21 2019 -0700 |
tree | dd1e900a09db7d7a26f8ef080df0753807dbb380 | |
parent | 7f4cd5de5cbb8586863243cdd3360d012177869f [diff] | |
parent | 85011bdc21d589506b8e17a117eee1be8ff4d1c8 [diff] |
Merge "Add state callback in launcher" into qt-dev am: 85011bdc21 Change-Id: Id1dbca91f244d5f6c28efb730c30a0f76eee308a
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) { }