Merge "Rename bindService to bindServiceAsUser to follow convention."

This commit is contained in:
Amith Yamasani
2013-01-16 23:26:30 +00:00
committed by Android (Google) Code Review
18 changed files with 47 additions and 35 deletions

View File

@@ -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