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

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

Issue 2127653002: Add policy to control valid UDP port range in WebRTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase + some fixes Created 4 years, 4 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 8757 matching lines...) Expand 10 before | Expand all | Expand 10 after
8768 'tags': [], 8768 'tags': [],
8769 'desc': 8769 'desc':
8770 '''When this policy is set to true, Android app data is uploaded to Androi d Backup servers and restored from them upon app re-installations for compatible apps. 8770 '''When this policy is set to true, Android app data is uploaded to Androi d Backup servers and restored from them upon app re-installations for compatible apps.
8771 8771
8772 When this policy is set to false, Android Backup Service will be switched off. 8772 When this policy is set to false, Android Backup Service will be switched off.
8773 8773
8774 If this setting is configured then users are not able change it themselves . 8774 If this setting is configured then users are not able change it themselves .
8775 8775
8776 If this setting is not configured then users are able to turn Android Back up Service on and off in the Android Settings app.''', 8776 If this setting is not configured then users are able to turn Android Back up Service on and off in the Android Settings app.''',
8777 }, 8777 },
8778 {
8779 'name': 'WebRtcUdpPortRange',
8780 'type': 'string',
8781 'schema': { 'type': 'string' },
8782 'supported_on': ['chrome.*:54-', 'chrome_os:54-'],
8783 'features': {
8784 'dynamic_refresh': False,
8785 'per_profile': True,
8786 },
8787 'example_value': '10000-11999',
8788 'id': 338,
8789 'caption': '''Restrict the UDP port range used by WebRTC''',
8790 'tags': [],
8791 'desc': '''Restricts the UDP port range used by WebRTC in this machine.
8792
8793 If this policy is left not set, or if it is set to an empty string or an i nvalid port range, WebRTC will be allowed to use any available port.''',
8794 },
8778 ], 8795 ],
8779 'messages': { 8796 'messages': {
8780 # Messages that are not associated to any policies. 8797 # Messages that are not associated to any policies.
8781 'win_supported_winxpsp2': { 8798 'win_supported_winxpsp2': {
8782 'desc': '''A label specifying the oldest possible compatible version of Wi ndows. This text will appear right next to a label containing the text 'Supporte d on:'.''', 8799 'desc': '''A label specifying the oldest possible compatible version of Wi ndows. This text will appear right next to a label containing the text 'Supporte d on:'.''',
8783 'text': '''Microsoft Windows XP SP2 or later''' 8800 'text': '''Microsoft Windows XP SP2 or later'''
8784 }, 8801 },
8785 'mac_chrome_preferences': { 8802 'mac_chrome_preferences': {
8786 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chromium are being edited''', 8803 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chromium are being edited''',
8787 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc es''' 8804 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc es'''
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
8897 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 8914 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
8898 'text': 'Default Settings (users can override)', 8915 'text': 'Default Settings (users can override)',
8899 }, 8916 },
8900 'doc_complex_policies_on_windows': { 8917 'doc_complex_policies_on_windows': {
8901 'desc': '''Text pointing the user to a help article for complex policies o n Windows''', 8918 'desc': '''Text pointing the user to a help article for complex policies o n Windows''',
8902 '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>' '', 8919 '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>' '',
8903 }, 8920 },
8904 }, 8921 },
8905 'placeholders': [], 8922 'placeholders': [],
8906 } 8923 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698