commit | 4060a75d8f2ef1aebe0944f05e4a1c8198edfeea | [log] [tgz] |
---|---|---|
author | Winson Chung <winsonc@google.com> | Mon Apr 08 15:49:37 2019 -0700 |
committer | Winson Chung <winsonc@google.com> | Thu Apr 11 18:11:51 2019 +0000 |
tree | 2b2173a547f46c6662bd74f390266315b09eab5e | |
parent | 5d7694c2378f43cdb5effb70268ef396755347eb [diff] |
Add state callback in launcher Bug: 129785904 Test: Manual, change states and verify state is sent Change-Id: Ia1f69494a6cbae68085fb09670ffa309ce147430 (cherry picked from commit c4b88c3dfb662318dc5c318c7a4b34889c1295bc)
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) { }