Merge "Clear calling identity when binding a11y services" into nyc-dev

am: b72c306

* commit 'b72c30653dc9652d9c6beba979e5ea194c1a4638':
  Clear calling identity when binding a11y services

Change-Id: I045bca4d88cdf22e84afd80534ddcb63a355302f
This commit is contained in:
Phil Weaver
2016-04-20 21:08:35 +00:00
committed by android-build-merger

View File

@@ -2296,11 +2296,16 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub {
public boolean bindLocked() {
UserState userState = getUserStateLocked(mUserId);
if (!mIsAutomation) {
if (mService == null && mContext.bindServiceAsUser(
mIntent, this,
Context.BIND_AUTO_CREATE | Context.BIND_FOREGROUND_SERVICE_WHILE_AWAKE,
new UserHandle(mUserId))) {
userState.mBindingServices.add(mComponentName);
final long identity = Binder.clearCallingIdentity();
try {
if (mService == null && mContext.bindServiceAsUser(
mIntent, this,
Context.BIND_AUTO_CREATE | Context.BIND_FOREGROUND_SERVICE_WHILE_AWAKE,
new UserHandle(mUserId))) {
userState.mBindingServices.add(mComponentName);
}
} finally {
Binder.restoreCallingIdentity(identity);
}
} else {
userState.mBindingServices.add(mComponentName);