diff options
| author | 2024-12-12 10:06:09 -0800 | |
|---|---|---|
| committer | 2024-12-12 10:06:09 -0800 | |
| commit | 4f12308f01f15aa3e2e5fbb62c2b1f686fdb28c1 (patch) | |
| tree | c73461ccf90f6d007305c76917afebd7e67641ae | |
| parent | 8a19587f2832b1c852d2a8740e5a2b85a6a2fd68 (diff) | |
[appops] Add Ops used by audio to native
Flag: EXEMPT trivial
Bug: 376481063
Test: compiles
Change-Id: I1ed7f701dd0afee152493a5bade5b5db98d9527a
| -rw-r--r-- | libs/permission/include/binder/AppOpsManager.h | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/libs/permission/include/binder/AppOpsManager.h b/libs/permission/include/binder/AppOpsManager.h index 243532bc4d..7e179d6f7c 100644 --- a/libs/permission/include/binder/AppOpsManager.h +++ b/libs/permission/include/binder/AppOpsManager.h @@ -148,7 +148,10 @@ public:          OP_BLUETOOTH_ADVERTISE = 114,          OP_RECORD_INCOMING_PHONE_AUDIO = 115,          OP_NEARBY_WIFI_DEVICES = 116, -        _NUM_OP = 117 +        // 116 - 154 omitted due to lack of use in native +        OP_CONTROL_AUDIO = 154, +        OP_CONTROL_AUDIO_PARTIAL = 155, +        _NUM_OP = 156,      };      enum {  |