diff options
author | Craig Mautner <cmautner@google.com> | 2012-07-27 14:30:59 -0700 |
---|---|---|
committer | Craig Mautner <cmautner@google.com> | 2012-07-27 14:30:59 -0700 |
commit | 39df578acddb739d7608e458533904bf5814c0da (patch) | |
tree | e64efcaf4249b57618dcd0a5d48de16c600895f6 /tools | |
parent | f063fa0c30be849d0e067fb40d6f388b7c0d8340 (diff) | |
download | frameworks_base-39df578acddb739d7608e458533904bf5814c0da.zip frameworks_base-39df578acddb739d7608e458533904bf5814c0da.tar.gz frameworks_base-39df578acddb739d7608e458533904bf5814c0da.tar.bz2 |
Fix build.
Change-Id: I52bbebae38912a4fb71c96174b3d4d8eb6be10c1
Diffstat (limited to 'tools')
-rw-r--r-- | tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindowSession.java | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindowSession.java b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindowSession.java index 1d71e1b..691eca7 100644 --- a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindowSession.java +++ b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindowSession.java @@ -45,7 +45,24 @@ public final class BridgeWindowSession implements IWindowSession { } @Override - public int addWithoutInputChannel(IWindow arg0, int seq, LayoutParams arg1, int arg2, Rect arg3) + public int addToDisplay(IWindow arg0, int seq, LayoutParams arg1, int arg2, int displayId, + Rect arg3, InputChannel outInputchannel) + throws RemoteException { + // pass for now. + return 0; + } + + @Override + public int addWithoutInputChannel(IWindow arg0, int seq, LayoutParams arg1, int arg2, + Rect arg3) + throws RemoteException { + // pass for now. + return 0; + } + + @Override + public int addToDisplayWithoutInputChannel(IWindow arg0, int seq, LayoutParams arg1, int arg2, + int displayId, Rect arg3) throws RemoteException { // pass for now. return 0; |