diff options
author | Amith Yamasani <yamasani@google.com> | 2013-01-16 23:26:30 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-01-16 23:26:30 +0000 |
commit | d4fe37bee7c7433f32c23cee100c6e05ba0f3b2b (patch) | |
tree | 76ea7e540dfa63062ae6fa6e4920dccb40c0aa14 /services/java/com/android/server/InputMethodManagerService.java | |
parent | d05efe727b61e321a6c2720166988d52629c050c (diff) | |
parent | 27b89e6658a0d233a53f5d7ca20dc57fec82d955 (diff) |
Merge "Rename bindService to bindServiceAsUser to follow convention."
Diffstat (limited to 'services/java/com/android/server/InputMethodManagerService.java')
-rw-r--r-- | services/java/com/android/server/InputMethodManagerService.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/services/java/com/android/server/InputMethodManagerService.java b/services/java/com/android/server/InputMethodManagerService.java index 3aa04b3a0663..2f121124eeeb 100644 --- a/services/java/com/android/server/InputMethodManagerService.java +++ b/services/java/com/android/server/InputMethodManagerService.java @@ -888,7 +888,8 @@ public class InputMethodManagerService extends IInputMethodManager.Stub Slog.e(TAG, "--- bind failed: service = " + service + ", conn = " + conn); return false; } - return mContext.bindService(service, conn, flags, mSettings.getCurrentUserId()); + return mContext.bindServiceAsUser(service, conn, flags, + new UserHandle(mSettings.getCurrentUserId())); } @Override |