summaryrefslogtreecommitdiffstats
path: root/tools/layoutlib/bridge
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2012-02-24 16:26:57 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2012-02-24 16:26:57 -0800
commit34706a4c81b82319a79a1b5ffa9084ed92a6e284 (patch)
tree7db04d1c5c352025b3c80df03dec0d4fa11f1625 /tools/layoutlib/bridge
parent92ce6314c15bd6d59a94a247ae63f1da9b4ccab2 (diff)
parente65a9ab1ea42d1f6190bee844ee666b7910d71ef (diff)
downloadframeworks_base-34706a4c81b82319a79a1b5ffa9084ed92a6e284.zip
frameworks_base-34706a4c81b82319a79a1b5ffa9084ed92a6e284.tar.gz
frameworks_base-34706a4c81b82319a79a1b5ffa9084ed92a6e284.tar.bz2
am e65a9ab1: am 5786f5cf: Merge "Fix build." into ics-mr1
* commit 'e65a9ab1ea42d1f6190bee844ee666b7910d71ef': Fix build.
Diffstat (limited to 'tools/layoutlib/bridge')
-rw-r--r--tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeIInputMethodManager.java13
1 files changed, 8 insertions, 5 deletions
diff --git a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeIInputMethodManager.java b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeIInputMethodManager.java
index 2a52888..a37a356 100644
--- a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeIInputMethodManager.java
+++ b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeIInputMethodManager.java
@@ -160,8 +160,9 @@ public class BridgeIInputMethodManager implements IInputMethodManager {
return false;
}
- public InputBindResult startInput(IInputMethodClient arg0, IInputContext arg1, EditorInfo arg2,
- boolean arg3, boolean arg4) throws RemoteException {
+
+ public InputBindResult startInput(IInputMethodClient client, IInputContext inputContext,
+ EditorInfo attribute, int controlFlags) throws RemoteException {
// TODO Auto-generated method stub
return null;
}
@@ -176,10 +177,12 @@ public class BridgeIInputMethodManager implements IInputMethodManager {
}
- public void windowGainedFocus(IInputMethodClient arg0, IBinder arg1, boolean arg2,
- boolean arg3, int arg4, boolean arg5, int arg6) throws RemoteException {
+ @Override
+ public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken,
+ int controlFlags, int softInputMode, int windowFlags, EditorInfo attribute,
+ IInputContext inputContext) throws RemoteException {
// TODO Auto-generated method stub
-
+ return null;
}
public IBinder asBinder() {