summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Atneya Nair <atneya@google.com> 2023-10-05 21:05:30 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2023-10-05 21:05:30 +0000
commitec8979dabaac00cb18f8dbb4799b068c5767175b (patch)
treed9d827c8f20e6bd9368d80abf3db77f9a93d9f53
parentad73da7f089275c06c8187492b2dc393e969e4aa (diff)
parent3dddd6bc6e7ac57de69df8f1e66e03fff822d3b9 (diff)
Merge "Move startWatchingModeWithFlags to the native supported binder calls" into tm-dev
-rw-r--r--core/java/com/android/internal/app/IAppOpsService.aidl4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/com/android/internal/app/IAppOpsService.aidl b/core/java/com/android/internal/app/IAppOpsService.aidl
index 88447daf7338..ff3c015cf66f 100644
--- a/core/java/com/android/internal/app/IAppOpsService.aidl
+++ b/core/java/com/android/internal/app/IAppOpsService.aidl
@@ -52,6 +52,8 @@ interface IAppOpsService {
int checkAudioOperation(int code, int usage, int uid, String packageName);
boolean shouldCollectNotes(int opCode);
void setCameraAudioRestriction(int mode);
+ void startWatchingModeWithFlags(int op, String packageName, int flags,
+ IAppOpsCallback callback);
// End of methods also called by native code.
// Any new method exposed to native must be added after the last one, do not reorder
@@ -110,8 +112,6 @@ interface IAppOpsService {
void startWatchingStarted(in int[] ops, IAppOpsStartedCallback callback);
void stopWatchingStarted(IAppOpsStartedCallback callback);
- void startWatchingModeWithFlags(int op, String packageName, int flags, IAppOpsCallback callback);
-
void startWatchingNoted(in int[] ops, IAppOpsNotedCallback callback);
void stopWatchingNoted(IAppOpsNotedCallback callback);