diff options
| author | 2023-10-05 21:48:19 +0000 | |
|---|---|---|
| committer | 2023-10-05 21:48:19 +0000 | |
| commit | 5f6c2060338d2ac28c056c734ced3420056edebe (patch) | |
| tree | 2aa4ef25688b6510f0531ec8fba9ead1ff05634b | |
| parent | a7ed76fe35a104ac35bb4152494f2eb7b09b83a7 (diff) | |
| parent | ec8979dabaac00cb18f8dbb4799b068c5767175b (diff) | |
Merge "Move startWatchingModeWithFlags to the native supported binder calls" into tm-dev am: ec8979daba
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/22465041
Change-Id: I02a28aea6eda09dc99bfebd1d69e0786ee38197b
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | core/java/com/android/internal/app/IAppOpsService.aidl | 4 | 
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);  |