diff options
| author | Dianne Hackborn <hackbod@google.com> | 2009-10-22 20:42:10 -0700 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2009-10-22 20:42:10 -0700 |
| commit | 68ce35ec9a9afe22af43a5dfa9411927afd89c40 (patch) | |
| tree | 8134e0910e09425cabdcc0c5c4fcf2117f223a8d /tools | |
| parent | 73d64fa200985262ead5e13674cbb0ec0671b092 (diff) | |
| parent | 8368e510a90ab30a9f850144f5adabb0455d26f9 (diff) | |
| download | frameworks_base-68ce35ec9a9afe22af43a5dfa9411927afd89c40.zip frameworks_base-68ce35ec9a9afe22af43a5dfa9411927afd89c40.tar.gz frameworks_base-68ce35ec9a9afe22af43a5dfa9411927afd89c40.tar.bz2 | |
am 8368e510: am c6bead14: am 7580493b: Implement feature #2117336: Create event communication APIs for live wallpaper
Merge commit '8368e510a90ab30a9f850144f5adabb0455d26f9'
* commit '8368e510a90ab30a9f850144f5adabb0455d26f9':
Implement feature #2117336: Create event communication APIs for live wallpaper
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java index d28a151..f0223e8 100644 --- a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java +++ b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java @@ -36,6 +36,7 @@ import android.graphics.Rect; import android.graphics.Region; import android.graphics.Typeface; import android.graphics.drawable.Drawable; +import android.os.Bundle; import android.os.Handler; import android.os.IBinder; import android.os.Looper; @@ -1069,6 +1070,18 @@ public final class Bridge implements ILayoutBridge { } @SuppressWarnings("unused") + public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y, + int z, Bundle extras, boolean sync) { + // pass for now. + return null; + } + + @SuppressWarnings("unused") + public void wallpaperCommandComplete(IBinder window, Bundle result) { + // pass for now. + } + + @SuppressWarnings("unused") public void closeSystemDialogs(String reason) { // pass for now. } @@ -1132,6 +1145,12 @@ public final class Bridge implements ILayoutBridge { } @SuppressWarnings("unused") + public void dispatchWallpaperCommand(String action, int x, int y, + int z, Bundle extras, boolean sync) { + // pass for now. + } + + @SuppressWarnings("unused") public void closeSystemDialogs(String reason) { // pass for now. } |
