Rename bindService to bindServiceAsUser to follow convention.
This is for the multi-user version of bindService, not the original. Change-Id: Ib2de35941196accf387b1a276a77e6f9af805ec0
This commit is contained in:
@ -248,7 +248,8 @@ public class TextServicesManagerService extends ITextServicesManager.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()));
|
||||
}
|
||||
|
||||
private void unbindServiceLocked() {
|
||||
|
Reference in New Issue
Block a user