diff options
| author | 2020-04-23 00:46:44 +0000 | |
|---|---|---|
| committer | 2020-04-23 00:46:44 +0000 | |
| commit | a87a494ff8dba736e7e3c185ec975bca395ff0c5 (patch) | |
| tree | a8cf43faf76346ff49ad53212618f24631c4654f | |
| parent | c023f4474b2f57fc82b963670e1a9fe46383d21c (diff) | |
| parent | 799ee34558f5ef91efe4e02242dabf5ca4feb463 (diff) | |
Merge "Call noteOperation() in ShellDelegate so that noteOp() really passes." into rvc-dev
| -rw-r--r-- | services/core/java/com/android/server/am/ActivityManagerService.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/services/core/java/com/android/server/am/ActivityManagerService.java b/services/core/java/com/android/server/am/ActivityManagerService.java index 9b2743ca6b1d..5d7590d7a458 100644 --- a/services/core/java/com/android/server/am/ActivityManagerService.java +++ b/services/core/java/com/android/server/am/ActivityManagerService.java @@ -20045,8 +20045,7 @@ public class ActivityManagerService extends IActivityManager.Stub if (uid == mTargetUid && isTargetOp(code)) { final long identity = Binder.clearCallingIdentity(); try { - return mAppOpsService.noteProxyOperation(code, Process.SHELL_UID, - "com.android.shell", null, uid, packageName, featureId, + return superImpl.apply(code, Process.SHELL_UID, "com.android.shell", featureId, shouldCollectAsyncNotedOp, message); } finally { Binder.restoreCallingIdentity(identity); |