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

Side by Side Diff: chrome/app/policy/policy_templates.json

Issue 7827033: Introduce net::HttpServerPropertiesManager to manage server-specific properties. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 | Annotate | Revision Log
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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 # policy configuration files. 'dynamic_refresh' controls if the generated 87 # policy configuration files. 'dynamic_refresh' controls if the generated
88 # documentation should state that the policy supports dynamic refresh or not. 88 # documentation should state that the policy supports dynamic refresh or not.
89 # Supporting dynamic refresh means that Chrome respects the changes to the 89 # Supporting dynamic refresh means that Chrome respects the changes to the
90 # policy immediately, without the need for restart. 90 # policy immediately, without the need for restart.
91 # 91 #
92 # IDs: 92 # IDs:
93 # Since a Protocol Buffer definition is generated from this file, unique and 93 # Since a Protocol Buffer definition is generated from this file, unique and
94 # persistent IDs for all fields (but not for groups!) are needed. These are 94 # persistent IDs for all fields (but not for groups!) are needed. These are
95 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, 95 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
96 # because doing so would break the deployed wire format! 96 # because doing so would break the deployed wire format!
97 # For your editing convenience: highest ID currently used: 106 97 # For your editing convenience: highest ID currently used: 107
98 # 98 #
99 # Placeholders: 99 # Placeholders:
100 # The following placeholder strings are automatically substituted: 100 # The following placeholder strings are automatically substituted:
101 # $1 -> Google Chrome / Chromium 101 # $1 -> Google Chrome / Chromium
102 # $2 -> Google Chrome OS / Chromium OS 102 # $2 -> Google Chrome OS / Chromium OS
103 # $3 -> Google Chrome Frame / Chromium Frame 103 # $3 -> Google Chrome Frame / Chromium Frame
104 # $6 is reserved for doc_writer 104 # $6 is reserved for doc_writer
105 # 105 #
106 # Device Policy: 106 # Device Policy:
107 # An additional flag device_only (optional, defaults to False) indicates 107 # An additional flag device_only (optional, defaults to False) indicates
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 'name': 'DisableSpdy', 233 'name': 'DisableSpdy',
234 'type': 'main', 234 'type': 'main',
235 'supported_on': ['chrome.*:8-', 'chrome_os:0.11-'], 235 'supported_on': ['chrome.*:8-', 'chrome_os:0.11-'],
236 'features': {'dynamic_refresh': 1}, 236 'features': {'dynamic_refresh': 1},
237 'example_value': True, 237 'example_value': True,
238 'id': 8, 238 'id': 8,
239 'caption': '''Disable SPDY protocol''', 239 'caption': '''Disable SPDY protocol''',
240 'desc': '''Disables use of the SPDY protocol in <ph name="PRODUCT_NAME">$1 <ex>Google Chrome</ex></ph>.''', 240 'desc': '''Disables use of the SPDY protocol in <ph name="PRODUCT_NAME">$1 <ex>Google Chrome</ex></ph>.''',
241 }, 241 },
242 { 242 {
243 'name': 'SpdyServers',
244 'type': 'list',
245 'supported_on': ['chrome.*:8-', 'chrome_os:0.11-'],
willchan no longer on Chromium 2011/10/06 22:13:22 Is this right? I actually don't know what 8- means
ramant (doing other things) 2011/10/07 01:40:20 Done.
246 'features': {'dynamic_refresh': 1},
247 'example_value': ['www.google.com:443' 'mail.google.com:443'],
248 'id': 107,
249 'caption': '''SPDY servers''',
250 'desc': '''List of SPDY servers in <ph name="PRODUCT_NAME">$1<ex>Google Ch rome</ex></ph>.''',
251 },
252 {
243 'name': 'DisabledSchemes', 253 'name': 'DisabledSchemes',
244 'type': 'list', 254 'type': 'list',
245 'supported_on': ['chrome.*:12-', 'chrome_os:0.11-'], 255 'supported_on': ['chrome.*:12-', 'chrome_os:0.11-'],
246 'features': {'dynamic_refresh': 1}, 256 'features': {'dynamic_refresh': 1},
247 'example_value': ['file', 'mailto'], 257 'example_value': ['file', 'mailto'],
248 'id': 85, 258 'id': 85,
249 'caption': '''Disable URL protocol schemes''', 259 'caption': '''Disable URL protocol schemes''',
250 'desc': '''Disables the listed protocol schemes in <ph name="PRODUCT_NAME" >$1<ex>Google Chrome</ex></ph>. 260 'desc': '''Disables the listed protocol schemes in <ph name="PRODUCT_NAME" >$1<ex>Google Chrome</ex></ph>.
251 261
252 URLs using a scheme from this list will not load and can not be navigated to.''', 262 URLs using a scheme from this list will not load and can not be navigated to.''',
(...skipping 1646 matching lines...) Expand 10 before | Expand all | Expand 10 after
1899 'desc': '''The name of the feature that indicates for a given policy that changes to it are respected by Chrome without a browser restart''', 1909 'desc': '''The name of the feature that indicates for a given policy that changes to it are respected by Chrome without a browser restart''',
1900 'text': '''Dynamic Policy Refresh''' 1910 'text': '''Dynamic Policy Refresh'''
1901 }, 1911 },
1902 'doc_deprecated': { 1912 'doc_deprecated': {
1903 'desc': '''Text appended in parentheses to the policy name to indicate t h at it has been deprecated''', 1913 'desc': '''Text appended in parentheses to the policy name to indicate t h at it has been deprecated''',
1904 'text': 'deprecated', 1914 'text': 'deprecated',
1905 } 1915 }
1906 }, 1916 },
1907 'placeholders': [], 1917 'placeholders': [],
1908 } 1918 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browsing_data_remover.cc » ('j') | chrome/browser/extensions/extension_webrequest_api_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698