diff options
author | 2020-08-26 12:23:11 +0000 | |
---|---|---|
committer | 2020-08-26 12:23:11 +0000 | |
commit | 73b83e32d249a22f7b6821d112772c52017994d8 (patch) | |
tree | 72c7cc3fc1236df59bae624533ee3dfc1161ecda | |
parent | 824a156a78c1e367432445f0df071f6aa2ae2e08 (diff) | |
parent | 7f8989b50b3276b33ab98a7adf2143155d5c9298 (diff) |
AppOpsManager: Include op for RECORD_AUDIO_HOTWORD. am: 7f8989b50b
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/native/+/12444202
Change-Id: I91f253e26e7745df5ddca13e5e8fb593d14fc7e3
-rw-r--r-- | libs/binder/include/binder/AppOpsManager.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/binder/include/binder/AppOpsManager.h b/libs/binder/include/binder/AppOpsManager.h index 6d04f13211..233f12a58c 100644 --- a/libs/binder/include/binder/AppOpsManager.h +++ b/libs/binder/include/binder/AppOpsManager.h @@ -133,7 +133,11 @@ public: OP_DEPRECATED_1 = 96, OP_AUTO_REVOKE_PERMISSIONS_IF_UNUSED = 97, OP_AUTO_REVOKE_MANAGED_BY_INSTALLER = 98, - _NUM_OP = 99 + OP_NO_ISOLATED_STORAGE = 99, + OP_PHONE_CALL_MICROPHONE = 100, + OP_PHONE_CALL_CAMERA = 101, + OP_RECORD_AUDIO_HOTWORD = 102, + _NUM_OP = 103 }; AppOpsManager(); |