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

Side by Side Diff: components/policy/resources/policy_templates.json

Issue 1784333002: Add Device Policy Handler for Bluetooth, and allow disabling the Bluetooth adapter on Chrome OS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use Shutdown instead of SetDisabled, reverted changes in device/bluetooth/* Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 { 1 {
2 # policy_templates.json - Metafile for policy templates 2 # policy_templates.json - Metafile for policy templates
3 # 3 #
4 # The content of this file is evaluated as a Python expression. 4 # The content of this file is evaluated as a Python expression.
5 # 5 #
6 # This file is used as input to generate the following policy templates: 6 # This file is used as input to generate the following policy templates:
7 # ADM, ADMX+ADML, MCX/plist and html documentation. 7 # ADM, ADMX+ADML, MCX/plist and html documentation.
8 # 8 #
9 # Policy templates are user interface definitions or documents about the 9 # Policy templates are user interface definitions or documents about the
10 # policies that can be used to configure Chrome. Each policy is a name-value 10 # policies that can be used to configure Chrome. Each policy is a name-value
(...skipping 8333 matching lines...) Expand 10 before | Expand all | Expand 10 after
8344 'caption': '''Whitelist of USB detachable devices''', 8344 'caption': '''Whitelist of USB detachable devices''',
8345 'tags': ['system-security'], 8345 'tags': ['system-security'],
8346 'desc': '''Defines the list of USB devices that are allowed to be detached from their kernel driver in order to be used through the chrome.usb API directl y inside a web application. Entries are pairs of USB Vendor Identifier and Produ ct Identifier to identify a specific hardware. 8346 'desc': '''Defines the list of USB devices that are allowed to be detached from their kernel driver in order to be used through the chrome.usb API directl y inside a web application. Entries are pairs of USB Vendor Identifier and Produ ct Identifier to identify a specific hardware.
8347 8347
8348 If this policy is not configured, the list of a detachable USB devices is considered as empty.''', 8348 If this policy is not configured, the list of a detachable USB devices is considered as empty.''',
8349 }, 8349 },
8350 { 8350 {
8351 'name': 'DeviceAllowBluetooth', 8351 'name': 'DeviceAllowBluetooth',
8352 'type': 'main', 8352 'type': 'main',
8353 'schema': { 'type': 'boolean' }, 8353 'schema': { 'type': 'boolean' },
8354 'supported_on': ['chrome_os:51-'], 8354 'supported_on': ['chrome_os:51-'],
bartfab (slow) 2016/04/18 13:43:44 Nit: s/51/52/
Ivan Šandrk 2016/04/18 15:09:18 Done.
8355 'device_only': True, 8355 'device_only': True,
8356 'features': { 8356 'features': {
8357 'dynamic_refresh': True, 8357 'dynamic_refresh': False,
bartfab (slow) 2016/04/18 13:43:44 Nit: I think we should explicitly document that af
Ivan Šandrk 2016/04/18 15:09:18 Done.
8358 }, 8358 },
8359 'example_value': True, 8359 'example_value': True,
8360 'id': 323, 8360 'id': 323,
8361 'caption': '''Allow bluetooth on device''', 8361 'caption': '''Allow bluetooth on device''',
8362 'tags': [], 8362 'tags': [],
8363 'desc': '''If this policy is set to false, <ph name="PRODUCT_OS_NAME">$2<e x>Google Chrome OS</ex></ph> will disable Bluetooth and the user cannot enable i t back. 8363 'desc': '''If this policy is set to false, <ph name="PRODUCT_OS_NAME">$2<e x>Google Chrome OS</ex></ph> will disable Bluetooth and the user cannot enable i t back.
8364 8364
8365 If this policy is set to true or left unset, the user will be able to enab le or disable Bluetooth as he wishes. 8365 If this policy is set to true or left unset, the user will be able to enab le or disable Bluetooth as he wishes.
8366 8366
8367 If this policy is set, the user cannot change or override it.''', 8367 If this policy is set, the user cannot change or override it.''',
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
8581 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 8581 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
8582 'text': 'Default Settings (users can override)', 8582 'text': 'Default Settings (users can override)',
8583 }, 8583 },
8584 'doc_complex_policies_on_windows': { 8584 'doc_complex_policies_on_windows': {
8585 'desc': '''Text pointing the user to a help article for complex policies o n Windows''', 8585 'desc': '''Text pointing the user to a help article for complex policies o n Windows''',
8586 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">https://www.chromium.org/administrators/complex-policies-on-windows<e x>https://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>' '', 8586 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">https://www.chromium.org/administrators/complex-policies-on-windows<e x>https://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>' '',
8587 }, 8587 },
8588 }, 8588 },
8589 'placeholders': [], 8589 'placeholders': [],
8590 } 8590 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698