commit | 596d93f36cbf8558a5e7a3d22e06e957e7007751 | [log] [tgz] |
---|---|---|
author | Lucas Dupin <dupin@google.com> | Fri May 10 23:56:53 2019 -0700 |
committer | android-build-merger <android-build-merger@google.com> | Fri May 10 23:56:53 2019 -0700 |
tree | e196d3a6c8f009d5fa0f385cc53a6ae20c0fd786 | |
parent | d4302629d7663c74e91ca45645d475469051816e [diff] | |
parent | d849ef084c180c393c7f3c69f6f00a01358a644f [diff] |
Implement scrim method am: d849ef084c Change-Id: Ie74fc91eabe58b89e0d02e281b788d39ba52a5bd
diff --git a/go/quickstep/src/com/android/quickstep/TouchInteractionService.java b/go/quickstep/src/com/android/quickstep/TouchInteractionService.java index 39f8448..da4c5e1 100644 --- a/go/quickstep/src/com/android/quickstep/TouchInteractionService.java +++ b/go/quickstep/src/com/android/quickstep/TouchInteractionService.java
@@ -92,6 +92,11 @@ // To be implemented } + @Override + public void onScrimColorsChanged(int color, int type) { + + } + /** 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 128fd45..f38ad0d 100644 --- a/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java +++ b/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java
@@ -176,6 +176,11 @@ mSystemUiStateFlags = stateFlags; } + @Override + public void onScrimColorsChanged(int color, int type) { + + } + /** Deprecated methods **/ public void onQuickStep(MotionEvent motionEvent) { }