diff options
| author | Lucas Dupin <dupin@google.com> | 2020-02-19 13:41:52 -0800 |
|---|---|---|
| committer | Santiago Etchebehere <santie@google.com> | 2020-03-10 10:52:28 -0700 |
| commit | 13f4b8a158683c9f8b91146e9d0fad6424f6a369 (patch) | |
| tree | b3b1f3c78b00487852f85609df0ca58dcce7b173 /core/java/android/view/ViewRootImpl.java | |
| parent | e42dc4907b98f9b7da60a37c0be796937fdbda89 (diff) | |
Implement wallpaper zoom hooking it to the shade
This adds a notion of per caller wallpaper zoom, in order to support
simultaneous clients.
The shade might be pulled down while in overview, for example, and we
must coordinate between launcher and systemui.
Bug: 149792636
Bug: 146387434
Test: atest NotificationShadeWindowViewTest
Test: atest WallpaperControllerTests
Test: manual
Change-Id: I588ba56d3d2704845d033ea2a5890ce812b9ee07
Diffstat (limited to 'core/java/android/view/ViewRootImpl.java')
| -rw-r--r-- | core/java/android/view/ViewRootImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/view/ViewRootImpl.java b/core/java/android/view/ViewRootImpl.java index 8d3cffc512c3..86696860036d 100644 --- a/core/java/android/view/ViewRootImpl.java +++ b/core/java/android/view/ViewRootImpl.java @@ -9054,7 +9054,7 @@ public final class ViewRootImpl implements ViewParent, @Override public void dispatchWallpaperOffsets(float x, float y, float xStep, float yStep, - boolean sync) { + float zoom, boolean sync) { if (sync) { try { mWindowSession.wallpaperOffsetsComplete(asBinder()); |
