Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(810)

Unified Diff: chrome/app/policy/policy_templates.json

Issue 10873085: Implement two new policies to control muting the audio I/O. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased to ToT. Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/audio/audio_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/policy/policy_templates.json
diff --git a/chrome/app/policy/policy_templates.json b/chrome/app/policy/policy_templates.json
index 5a49baa5124f10a8742f68634c071db0694c3e45..8dc4fde74c8820328ecd7b53e6b90116f451cb1e 100644
--- a/chrome/app/policy/policy_templates.json
+++ b/chrome/app/policy/policy_templates.json
@@ -112,7 +112,7 @@
# persistent IDs for all fields (but not for groups!) are needed. These are
# specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
# because doing so would break the deployed wire format!
-# For your editing convenience: highest ID currently used: 158
+# For your editing convenience: highest ID currently used: 160
#
# Placeholders:
# The following placeholder strings are automatically substituted:
@@ -3149,6 +3149,40 @@
If this setting is disabled or not configured then users can use all supported types of external storage on their device.''',
},
{
+ 'name': 'AudioOutputAllowed',
+ 'type': 'main',
+ 'schema': { 'type': 'boolean' },
+ 'supported_on': ['chrome_os:0.23-'],
+ 'features': {'dynamic_refresh': True},
+ 'example_value': False,
+ 'id': 159,
+ 'caption': '''Allow playing audio''',
+ 'desc': '''Allow playing audio.
+
+ When this policy is set to false, audio output will not be available on the device while the user is logged in.
+
+ This policy affects all types of audio output and not only the built-in speakers. Audio accessability features are also inhibited by this policy. Do not enable this policy if a screen reader is required for the user.
+
+ If this setting is set to true or not configured then users can use all supported audio outputs on their device.''',
+ },
+ {
+ 'name': 'AudioCaptureAllowed',
+ 'type': 'main',
+ 'schema': { 'type': 'boolean' },
+ 'supported_on': ['chrome_os:0.23-'],
+ 'features': {'dynamic_refresh': True},
+ 'example_value': False,
+ 'id': 160,
+ 'caption': '''Allow capturing audio''',
+ 'desc': '''Allow capturing audio.
+
+ When this policy is set to false, audio capturing will not be available on the device while the user is logged in.
+
+ This policy affects all types of audio inputs and not only the built-in microphone.
+
+ If this setting is set to true or not configured then users can use all supported audio inputs on their device.''',
+ },
+ {
'name': 'DisableScreenshots',
'type': 'main',
'schema': { 'type': 'boolean' },
« no previous file with comments | « no previous file | chrome/browser/chromeos/audio/audio_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698