diff options
author | 2015-04-28 12:09:01 -0700 | |
---|---|---|
committer | 2015-04-28 16:33:28 -0700 | |
commit | f1377f506c764a8b254b60ee28e38e12ccc8135c (patch) | |
tree | 4de921366de5c41e50e466e6dfa5d12225c9a004 /include/binder/AppOpsManager.h | |
parent | 4afd8b67f9be307e6c6ed89deab2e85516bb3a0e (diff) |
Respect the record audio app op - frameworks native
Change-Id: Id747767377953fd644a538aad3f603d6c50875a2
Diffstat (limited to 'include/binder/AppOpsManager.h')
-rw-r--r-- | include/binder/AppOpsManager.h | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/include/binder/AppOpsManager.h b/include/binder/AppOpsManager.h index 256cb949bb..ea339527ae 100644 --- a/include/binder/AppOpsManager.h +++ b/include/binder/AppOpsManager.h @@ -63,7 +63,31 @@ public: OP_ACCESS_NOTIFICATIONS = 25, OP_CAMERA = 26, OP_RECORD_AUDIO = 27, - OP_PLAY_AUDIO = 28 + OP_PLAY_AUDIO = 28, + OP_READ_CLIPBOARD = 29, + OP_WRITE_CLIPBOARD = 30, + OP_TAKE_MEDIA_BUTTONS = 31, + OP_TAKE_AUDIO_FOCUS = 32, + OP_AUDIO_MASTER_VOLUME = 33, + OP_AUDIO_VOICE_VOLUME = 34, + OP_AUDIO_RING_VOLUME = 35, + OP_AUDIO_MEDIA_VOLUME = 36, + OP_AUDIO_ALARM_VOLUME = 37, + OP_AUDIO_NOTIFICATION_VOLUME = 38, + OP_AUDIO_BLUETOOTH_VOLUME = 39, + OP_WAKE_LOCK = 40, + OP_MONITOR_LOCATION = 41, + OP_MONITOR_HIGH_POWER_LOCATION = 42, + OP_GET_USAGE_STATS = 43, + OP_MUTE_MICROPHONE = 44, + OP_TOAST_WINDOW = 45, + OP_PROJECT_MEDIA = 46, + OP_ACTIVATE_VPN = 47, + OP_WRITE_WALLPAPER = 48, + OP_ASSIST_STRUCTURE = 49, + OP_ASSIST_SCREENSHOT = 50, + OP_READ_PHONE_STATE = 51, + OP_ADD_VOICEMAIL = 52 }; AppOpsManager(); |