summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2020-08-20 19:34:53 +0100
committerNarayan Kamath <narayan@google.com>2020-08-24 11:41:09 +0100
commit7f8989b50b3276b33ab98a7adf2143155d5c9298 (patch)
tree5f52e0c6a9b68599d57616326a89d1d11830fbb6
parentb05270227ec22acc6bbaef2a6e66fb208070f4a3 (diff)
downloadnative-7f8989b50b3276b33ab98a7adf2143155d5c9298.tar.gz
AppOpsManager: Include op for RECORD_AUDIO_HOTWORD.
Also include other recently added ops that are currently missing. Bug: 162547999 Test: make Change-Id: Iea7b09f8efb0873bc521a36e9086dcec61c99d3d
-rw-r--r--libs/binder/include/binder/AppOpsManager.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/binder/include/binder/AppOpsManager.h b/libs/binder/include/binder/AppOpsManager.h
index 6afcd77e70..d93935ae5d 100644
--- a/libs/binder/include/binder/AppOpsManager.h
+++ b/libs/binder/include/binder/AppOpsManager.h
@@ -131,7 +131,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();