summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorCraig Mautner <cmautner@google.com>2012-07-30 12:10:24 -0700
committerCraig Mautner <cmautner@google.com>2012-08-02 08:47:44 -0700
commit59c009776dae5ccbdfb93d7151ff2065ca049dc3 (patch)
tree45ffbc8d93e8f245ed1c78ffa64b8bcc5ae59355 /tools
parentfa14d824d235c33b137a429c3eb6818f273407ab (diff)
downloadframeworks_base-59c009776dae5ccbdfb93d7151ff2065ca049dc3.zip
frameworks_base-59c009776dae5ccbdfb93d7151ff2065ca049dc3.tar.gz
frameworks_base-59c009776dae5ccbdfb93d7151ff2065ca049dc3.tar.bz2
Introduce multiple displays with DisplayContent.
Fix a couple of bugs that turned up. Remove touch/focus from display. Add iterators for access. Respond to comments. Remove TODOs, and some deviceId parameters. Change-Id: Idcdb4f1979aa7b14634d450fd0333d6eff26994d
Diffstat (limited to 'tools')
-rw-r--r--tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindowManager.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindowManager.java b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindowManager.java
index 2619dd8..67e51fa 100644
--- a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindowManager.java
+++ b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeWindowManager.java
@@ -92,7 +92,7 @@ public class BridgeWindowManager implements IWindowManager {
}
@Override
- public void clearForcedDisplaySize() throws RemoteException {
+ public void clearForcedDisplaySize(int displayId) throws RemoteException {
// TODO Auto-generated method stub
}
@@ -262,7 +262,8 @@ public class BridgeWindowManager implements IWindowManager {
}
@Override
- public Bitmap screenshotApplications(IBinder arg0, int arg1, int arg2) throws RemoteException {
+ public Bitmap screenshotApplications(IBinder arg0, int displayId, int arg1, int arg2)
+ throws RemoteException {
// TODO Auto-generated method stub
return null;
}
@@ -324,7 +325,7 @@ public class BridgeWindowManager implements IWindowManager {
}
@Override
- public void setForcedDisplaySize(int arg0, int arg1) throws RemoteException {
+ public void setForcedDisplaySize(int displayId, int arg0, int arg1) throws RemoteException {
// TODO Auto-generated method stub
}