be9e00b15c864fa6913bb0546ccbfade85aaa801
[platform/framework/web/crosswalk.git] / src / components / policy / resources / policy_templates.json
1 {
2 # policy_templates.json - Metafile for policy templates
3 #
4 # The content of this file is evaluated as a Python expression.
5 #
6 # This file is used as input to generate the following policy templates:
7 # ADM, ADMX+ADML, MCX/plist and html documentation.
8 #
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
11 # pair where the value has a given type. Chrome looks up the values using the
12 # names of the policies. In the user interface where the values can be set,
13 # related policies might appear together in policy groups. The grouping is not
14 # visible to Chrome.
15 #
16 # This file contains a list of policies and groups. Each group contains a list
17 # of policies under the key 'policies'. All the policies and groups must have
18 # unique names. Group names are not exposed to Chrome at all.
19 #
20 # Each policy has a type. The currently implemented types:
21 #   'group': - not a real policy, contains a list of policies
22 #     NOTE: Currently nesting groups inside other groups is not supported.
23 #   'string' - a string value
24 #   'int' - an integer value
25 #   'int-enum' - the user can select an integer value from a collection of
26 #     items
27 #   'string-enum' - the user can select a string value from a collection of
28 #     items
29 #   'string-enum-list' - the user can select a set of string values from a
30 #     collection of items
31 #   'main' - a boolean value
32 #   'list' - a list of string values
33 #   'dict' - a dictionary value, containing other values indexed by strings
34 #     NOTE: This type is not supported yet. http://crbug.com/108992
35 #   'external' - a policy that references external data.
36 #     NOTE: This type is currently supported on Chrome OS only.
37 #
38 # Policy group descriptions, policy captions and similar texts are localized
39 # strings taken from the <message> nodes of the .grd file. Their name
40 # attributes are generated from the JSON keys.
41 # Each item (policy or group) may have the following messages:
42 #   - description:
43 #     Describes the item it applies to.
44 #   - caption
45 #     A short, one-line summary of the item it applies to. This can appear
46 #     both in policy or group listings or on title bars of policy-setting
47 #     windows.
48 #   - label (Optional, defaults to caption if not specified.)
49 #     A short, one-line summary of the item it applies to. The difference
50 #     from caption is that label always appears next to the entry field
51 #     where the value of the policy can be entered. 'main' policies on
52 #     Windows ignore this. Policies on Mac are using this instead of caption.
53 #
54 # Generated grd names:
55 #   Each name has two parts: the second part is either CAPTION, DESC or LABEL,
56 #   and the first part identifies the item the text applies to:
57 #   -For policies and groups:
58 #     IDS_POLICY_<NAME OF THE POLICY OR GROUP>
59 #     e.g. the name of the caption of policy HomepageLocation:
60 #       IDS_POLICY_HOMEPAGELOCATION_CAPTION
61 #     or other messages of the policy HomepageLocation:
62 #       IDS_POLICY_HOMEPAGELOCATION_LABEL
63 #       IDS_POLICY_HOMEPAGELOCATION_DESC
64 #   -For enum items:
65 #     IDS_POLICY_ENUM_<NAME OF THE ITEM>
66 #     e.g. the name of the caption of ProxyServerDisabled:
67 #       IDS_POLICY_ENUM_PROXYSERVERDISABLED_CAPTION
68 #
69 # Products and versions:
70 #   Each policy has the list of products and version numbers where it is
71 #   supported under the key 'supported_on'. Each item of this list has the
72 #   form of 'product:since_version-until_version', which means that support
73 #   for the policy in 'product' was introduced in 'since_version' and removed
74 #   after 'until_version'. Product names may contain a suffix specifying a
75 #   platform name, e.g.: 'chrome.win' is read as 'Chrome on Windows'. Version
76 #   numbers can be any string that does not contain ':' or '-' characters.
77 #
78 #   Currently supported product names:
79 #       'chrome_frame', 'chrome_os', 'android', 'ios',
80 #       'chrome.win', 'chrome.linux', 'chrome.mac', 'chrome.*'
81 #     For example if 'chrome.*:5-10' is specified for a policy, then it should
82 #     be read as:
83 #       'chrome.linux:5-10', 'chrome.mac:5-10', 'chrome.win:5-10'
84 #
85 #   The product name also affects in which templates the policy is included:
86 #     chrome.*, chrome.win, chrome_frame -> ADM, ADMX, ADML, doc
87 #     chrome.*, chrome.linux -> JSON, doc
88 #     chrome.*, chrome.mac -> plist, plist_strings, doc
89 #     everything else -> doc
90 #
91 #   The default list of policies supported by Chrome is also generated based
92 #   on the product names:
93 #     chrome.* -> Chrome policy definition list
94 #     chrome_os -> Chrome policy definition list, when building OS_CHROMEOS
95 #
96 # Annotations:
97 #   Additional information is specified under keys 'features' and
98 #   'example_value'. These are used in the generated documentation and example
99 #   policy configuration files. 'dynamic_refresh' controls if the generated
100 #   documentation should state that the policy supports dynamic refresh or not.
101 #   Supporting dynamic refresh means that Chrome respects the changes to the
102 #   policy immediately, without the need for restart.
103 #   'can_be_mandatory' can be set to False to exclude that policy in the
104 #   mandatory policies template. This only affects the template generation;
105 #   The default is True.
106 #   'can_be_recommended' can be set to True to include that policy in the
107 #   recommended policies templates. This only affects the template generation;
108 #   all policies can be at the recommended level. The default is False.
109 #
110 #   The 'max_size' key is used to specify the maximal size of the external data
111 #   that a policy can reference, in bytes. This annotation is compulsory for
112 #   policies of type 'external'. It is ignored for all other policy types.
113 #
114 #   The 'future' key is used to indicate that a policy isn't yet ready for
115 #   usage. It defaults to False, and currently affects the generated policy
116 #   templates and documentation. The policy definition list that Chrome sees
117 #   will include policies marked with 'future'. If a WIP policy isn't meant to
118 #   be seen by the policy providers either, the 'supported_on' key should be set
119 #   to an empty list.
120 #
121 # IDs:
122 #   Since a Protocol Buffer definition is generated from this file, unique and
123 #   persistent IDs for all fields (but not for groups!) are needed. These are
124 #   specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
125 #   because doing so would break the deployed wire format!
126 #   For your editing convenience: highest ID currently used: 277
127 #
128 # Placeholders:
129 #   The following placeholder strings are automatically substituted:
130 #     $1 -> Google Chrome / Chromium
131 #     $2 -> Google Chrome OS / Chromium OS
132 #     $3 -> Google Chrome Frame / Chromium Frame
133 #     $6 is reserved for doc_writer
134 #
135 # Device Policy:
136 #   An additional flag device_only (optional, defaults to False) indicates
137 #   that this policy is only supported as a device-level Cloud Policy.
138 #   In that case no entry in the UserPolicy Protobuf is generated and
139 #   it is assumed that it will be added to the DevicePolicy Protobuf manually.
140 #
141 # Enterprise defaults:
142 #   An optional key 'default_for_enterprise_users' contains value that's set for
143 #   enterprise users as a default.
144 #
145   'policy_definitions': [
146     {
147       'name': 'Homepage',
148       'type': 'group',
149       'caption': '''Home page''',
150       'desc': '''Configure the default home page in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing it.
151
152       The user's home page settings are only completely locked down, if you either select the home page to be the new tab page, or set it to be a URL and specify a home page URL. If you don't specify the home page URL, then the user is still able to set the home page to the new tab page by specifying 'chrome://newtab'.''',
153       'policies': [
154         {
155           'name': 'HomepageLocation',
156           'type': 'string',
157           'schema': { 'type': 'string' },
158           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
159           'features': {
160             'can_be_recommended': True,
161             'dynamic_refresh': True,
162             'per_profile': True,
163           },
164           'example_value': 'http://chromium.org',
165           'id': 1,
166           'caption': '''Configure the home page URL''',
167           'desc': '''Configures the default home page URL in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing it.
168
169           The home page is the page opened by the Home button. The pages that open on startup are controlled by the RestoreOnStartup policies.
170
171           The home page type can either be set to a URL you specify here or set to the New Tab Page. If you select the New Tab Page, then this policy does not take effect.
172
173           If you enable this setting, users cannot change their home page URL in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>, but they can still can choose the New Tab Page as their home page.
174
175           Leaving this policy not set will allow the user to choose his home page on his own if HomepageIsNewTabPage is not set too.''',
176           'label': '''Home page URL''',
177         },
178         {
179           'name': 'HomepageIsNewTabPage',
180           'type': 'main',
181           'schema': { 'type': 'boolean' },
182           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
183           'features': {
184             'can_be_recommended': True,
185             'dynamic_refresh': True,
186             'per_profile': True,
187           },
188           'example_value': True,
189           'id': 2,
190           'caption': '''Use New Tab Page as homepage''',
191           'desc': '''Configures the type of the default home page in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing home page preferences. The home page can either be set to a URL you specify or set to the New Tab Page.
192
193           If you enable this setting, the New Tab Page is always used for the home page, and the home page URL location is ignored.
194
195           If you disable this setting, the user's homepage will never be the New Tab Page, unless its URL is set to 'chrome://newtab'.
196
197           If you enable or disable this setting, users cannot change their homepage type in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
198
199           Leaving this policy not set will allow the user to choose whether the new tab page is his home page on his own.''',
200         },
201       ],
202     },
203     {
204       'name': 'DefaultBrowserSettingEnabled',
205       'type': 'main',
206       'schema': { 'type': 'boolean' },
207       'supported_on': ['chrome.*:11-'],
208       'features': {
209         'dynamic_refresh': True,
210         'per_profile': False,
211       },
212       'example_value': True,
213       'id': 3,
214       'caption': '''Set <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> as Default Browser''',
215       'desc': '''Configures the default browser checks in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing them.
216
217       If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will always check on startup whether it is the default browser and automatically register itself if possible.
218
219       If this setting is disabled, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will never check if it is the default browser and will disable user controls for setting this option.
220
221       If this setting is not set, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will allow the user to control whether it is the default browser and whether user notifications should be shown when it isn't.''',
222       'label': '''Set <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> as Default Browser''',
223     },
224     {
225       'name': 'ApplicationLocaleValue',
226       'type': 'string',
227       'schema': { 'type': 'string' },
228       'supported_on': ['chrome.win:8-'],
229       'features': {
230         'can_be_recommended': True,
231         'dynamic_refresh': False,
232         'per_profile': False,
233       },
234       'example_value': 'en',
235       'id': 4,
236       'caption': '''Application locale''',
237       'desc': '''Configures the application locale in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing the locale.
238
239       If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> uses the specified locale. If the configured locale is not supported, 'en-US' is used instead.
240
241       If this setting is disabled or not set, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> uses either the user-specified preferred locale (if configured), the system locale or the fallback locale 'en-US'.''',
242       'label': '''Application locale''',
243     },
244     {
245       'name': 'AlternateErrorPagesEnabled',
246       'type': 'main',
247       'schema': { 'type': 'boolean' },
248       'supported_on': [
249         'chrome.*:8-',
250         'chrome_os:11-',
251         'android:30-',
252       ],
253       'features': {
254         'can_be_recommended': True,
255         'dynamic_refresh': True,
256         'per_profile': True,
257       },
258       'example_value': True,
259       'id': 5,
260       'caption': '''Enable alternate error pages''',
261       'desc': '''Enables the use of alternate error pages that are built into <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> (such as 'page not found') and prevents users from changing this setting.
262
263       If you enable this setting, alternate error pages are used.
264
265       If you disable this setting, alternate error pages are never used.
266
267       If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
268
269       If this policy is left not set, this will be enabled but the user will be able to change it.''',
270     },
271     {
272       'name': 'SearchSuggestEnabled',
273       'type': 'main',
274       'schema': { 'type': 'boolean' },
275       'supported_on': [
276         'chrome.*:8-',
277         'chrome_os:11-',
278         'android:30-',
279         'ios:34-',
280       ],
281       'features': {
282         'can_be_recommended': True,
283         'dynamic_refresh': True,
284         'per_profile': True,
285       },
286       'example_value': True,
287       'id': 6,
288       'caption': '''Enable search suggestions''',
289       'desc': '''Enables search suggestions in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s omnibox and prevents users from changing this setting.
290
291       If you enable this setting, search suggestions are used.
292
293       If you disable this setting, search suggestions are never used.
294
295       If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
296
297       If this policy is left not set, this will be enabled but the user will be able to change it.''',
298     },
299     {
300       'name': 'DnsPrefetchingEnabled',
301       'type': 'main',
302       'schema': { 'type': 'boolean' },
303       'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
304       'features': {
305         'can_be_recommended': True,
306         'dynamic_refresh': True,
307         'per_profile': True,
308       },
309       'example_value': True,
310       'id': 7,
311       'caption': '''Enable network prediction''',
312       'desc': '''Enables network prediction in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
313
314       This controls not only DNS prefetching but also TCP and SSL preconnection and prerendering of web pages. The policy name refers to DNS prefetching for historical reasons.
315
316       If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
317
318       If this policy is left not set, this will be enabled but the user will be able to change it.''',
319     },
320     {
321       'name': 'NetworkPredictionOptions',
322       'type': 'int-enum',
323       'schema': {
324         'type': 'integer',
325         'enum': [ 0, 1, 2 ],
326       },
327       'items': [
328         {
329           'name': 'NetworkPredictionAlways',
330           'value': 0,
331           'caption': '''Predict network actions on any network connection''',
332         },
333         {
334           'name': 'NetworkPredictionWifiOnly',
335           'value': 1,
336           'caption': '''Predict network actions on any network that is not
337           cellular''',
338         },
339         {
340           'name': 'NetworkPredictionNever',
341           'value': 2,
342           'caption': '''Do not predict network actions on any network connection''',
343         },
344       ],
345       'supported_on': ['chrome.*:38-', 'chrome_os:38-', 'android:38-'],
346       'features': {
347         'can_be_recommended': True,
348         'dynamic_refresh': True,
349         'per_profile': True,
350       },
351       'example_value': 1,
352       'id': 273,
353       'caption': '''Enable network prediction''',
354       'desc': '''Enables network prediction in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
355
356       This controls DNS prefetching, TCP and SSL preconnection and prerendering of web pages.
357
358       If you set this preference to 'always', 'never', or 'WiFi only', users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
359
360       If this policy is left not set, network prediction will be enabled but the user will be able to change it.''',
361     },
362     {
363       'name': 'WPADQuickCheckEnabled',
364       'type': 'main',
365       'schema': { 'type': 'boolean' },
366       'supported_on': [ 'chrome.*:35-', 'chrome_os:35-' ],
367       'features': {
368         'dynamic_refresh': False,
369         'per_profile': False,
370       },
371       'example_value': True,
372       'id': 261,
373       'caption': '''Enable WPAD optimization''',
374       'desc': '''Enables WPAD optimization in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
375
376       Setting this to enabled causes <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to wait for a shorter interval for DNS-based WPAD servers.
377
378       If this policy is left not set, this will be enabled and the user will not
379       be able to change it.''',
380     },
381     {
382       'name': 'DisableSpdy',
383       'type': 'main',
384       'schema': { 'type': 'boolean' },
385       'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
386       'features': {
387         'dynamic_refresh': True,
388         'per_profile': False,
389       },
390       'example_value': True,
391       'id': 8,
392       'caption': '''Disable SPDY protocol''',
393       'desc': '''Disables use of the SPDY protocol in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
394
395       If this policy is enabled the SPDY protocol will not be available in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
396
397       Setting this policy to disabled will allow the usage of SPDY.
398
399       If this policy is left not set, SPDY will be available.''',
400     },
401     {
402       'name': 'DisabledSchemes',
403       'type': 'list',
404       'schema': {
405         'type': 'array',
406         'items': { 'type': 'string' },
407       },
408       'supported_on': ['chrome.*:12-', 'chrome_os:12-'],
409       'features': {
410         'dynamic_refresh': True,
411         'per_profile': True,
412       },
413       'deprecated': True,
414       'example_value': ['file', 'https'],
415       'id': 85,
416       'caption': '''Disable URL protocol schemes''',
417       'desc': '''This policy is deprecated, please use URLBlacklist instead.
418
419       Disables the listed protocol schemes in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
420
421       URLs using a scheme from this list will not load and can not be navigated to.
422
423       If this policy is left not set or the list is empty all schemes will be accessible in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
424       'label': '''List of disabled protocol schemes''',
425     },
426     {
427       'name': 'JavascriptEnabled',
428       'type': 'main',
429       'schema': { 'type': 'boolean' },
430       'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
431       'features': {
432         'dynamic_refresh': True,
433         'per_profile': True,
434       },
435       'deprecated': True,
436       'example_value': True,
437       'id': 9,
438       'caption': '''Enable JavaScript''',
439       'desc': '''This policy is deprecated, please use DefaultJavaScriptSetting instead.
440
441       Can be used to disabled JavaScript in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
442
443       If this setting is disabled, web pages cannot use JavaScript and the user cannot change that setting.
444
445       If this setting is enabled or not set, web pages can use JavaScript but the user can change that setting.''',
446     },
447     {
448       'name': 'IncognitoEnabled',
449       'type': 'main',
450       'schema': { 'type': 'boolean' },
451       'supported_on': ['chrome.*:11-', 'chrome_os:11-', 'android:30-'],
452       'features': {
453         'dynamic_refresh': True,
454         'per_profile': True,
455       },
456       'deprecated': True,
457       'example_value': False,
458       'id': 10,
459       'caption': '''Enable Incognito mode''',
460       'desc': '''This policy is deprecated. Please, use IncognitoModeAvailability instead.
461       Enables Incognito mode in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
462
463       If this setting is enabled or not configured, users can open web pages in incognito mode.
464
465       If this setting is disabled, users cannot open web pages in incognito mode.
466
467       If this policy is left not set, this will be enabled and the user will be able to use incognito mode.''',
468     },
469     {
470       'name': 'IncognitoModeAvailability',
471       'type': 'int-enum',
472       'schema': {
473         'type': 'integer',
474         'enum': [ 0, 1, 2 ],
475       },
476       'items': [
477         {
478           'name': 'Enabled',
479           'value': 0,
480           'caption': '''Incognito mode available''',
481         },
482         {
483           'name': 'Disabled',
484           'value': 1,
485           'caption': '''Incognito mode disabled''',
486         },
487         {
488           'name': 'Forced',
489           'value': 2,
490           'caption': '''Incognito mode forced''',
491         },
492       ],
493       'supported_on': [
494         'chrome.*:14-',
495         'chrome_os:14-',
496         'android:30-',
497       ],
498       'features': {
499         'dynamic_refresh': True,
500         'per_profile': True,
501       },
502       'example_value': 1,
503       'id': 93,
504       'caption': '''Incognito mode availability''',
505       'desc': '''Specifies whether the user may open pages in Incognito mode in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
506
507       If 'Enabled' is selected or the policy is left unset, pages may be opened in Incognito mode.
508
509       If 'Disabled' is selected, pages may not be opened in Incognito mode.
510
511       If 'Forced' is selected, pages may be opened ONLY in Incognito mode.''',
512     },
513     {
514       'name': 'SavingBrowserHistoryDisabled',
515       'type': 'main',
516       'schema': { 'type': 'boolean' },
517       'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
518       'features': {
519         'dynamic_refresh': True,
520         'per_profile': True,
521       },
522       'example_value': True,
523       'id': 11,
524       'caption': '''Disable saving browser history''',
525       'desc': '''Disables saving browser history in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
526
527       If this setting is enabled, browsing history is not saved. This setting also disables tab syncing.
528
529       If this setting is disabled or not set, browsing history is saved.''',
530     },
531     {
532       'name': 'AllowDeletingBrowserHistory',
533       'future': True,
534       'type': 'main',
535       'schema': { 'type': 'boolean' },
536       # TODO(pamg): Restore the correct 'supported' line when the UI properly
537       # shows that deleting browser history is disabled. Also fix the 'os' line
538       # in policy_test_cases.json.
539       # 'supported_on': ['chrome.*:27-', 'chrome_os:27-'],
540       'supported_on': [],
541       'features': {
542         'dynamic_refresh': True,
543         'per_profile': True,
544       },
545       'example_value': True,
546       'id': 187,
547       'caption': '''Enable deleting browser and download history''',
548       'desc': '''Enables deleting browser history and download history in <ph name="PRODUCT_NAME">$<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
549
550       Note that even with this policy disabled, the browsing and download history are not guaranteed to be retained: users may be able to edit or delete the history database files directly, and the browser itself may expire or archive any or all history items at any time.
551
552       If this setting is enabled or not set, browsing and download history can be deleted.
553
554       If this setting is disabled, browsing and download history cannot be deleted.''',
555     },
556     {
557       'name': 'RemoteAccess',
558       'type': 'group',
559       'caption': '''Configure remote access options''',
560       'desc': '''Configure remote access options in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
561
562       These features are ignored unless the Remote Access web application is installed.''',
563       'policies': [
564         {
565           'name': 'RemoteAccessClientFirewallTraversal',
566           'type': 'main',
567           'schema': { 'type': 'boolean' },
568           'supported_on': ['chrome.*:14-', 'chrome_os:14-'],
569           'features': {
570             'dynamic_refresh': True,
571           },
572           # Mark this 'removed' when http://crbug.com/100216 is resolved.
573           'deprecated': True,
574           'example_value': False,
575           'id': 94,
576           'caption': '''Enable firewall traversal from remote access client''',
577           'desc': '''This policy is no longer supported.
578           Enables usage of STUN and relay servers when connecting to a remote client.
579
580           If this setting is enabled, then this machine can discover and connect to remote host machines even if they are separated by a firewall.
581
582           If this setting is disabled and outgoing UDP connections are filtered by the firewall, then this machine can only connect to host machines within the local network.''',
583         },
584         {
585           'name': 'RemoteAccessHostFirewallTraversal',
586           'type': 'main',
587           'schema': { 'type': 'boolean' },
588           'supported_on': ['chrome.*:14-'],
589           'features': {
590             'dynamic_refresh': True,
591             'per_profile': False,
592           },
593           'example_value': False,
594           'id': 95,
595           'caption': '''Enable firewall traversal from remote access host''',
596           'desc': '''Enables usage of STUN servers when remote clients are trying to establish a connection to this machine.
597
598           If this setting is enabled, then remote clients can discover and connect to this machines even if they are separated by a firewall.
599
600           If this setting is disabled and outgoing UDP connections are filtered by the firewall, then this machine will only allow connections from client machines within the local network.
601
602           If this policy is left not set the setting will be enabled.''',
603         },
604         {
605           'name': 'RemoteAccessHostDomain',
606           'type': 'string',
607           'schema': { 'type': 'string' },
608           'supported_on': ['chrome.*:22-'],
609           'features': {
610             'dynamic_refresh': True,
611             'per_profile': False,
612           },
613           'example_value': 'my-awesome-domain.com',
614           'id': 154,
615           'caption': '''Configure the required domain name for remote access hosts''',
616           'desc': '''Configures the required host domain name that will be imposed on remote access hosts and prevents users from changing it.
617
618           If this setting is enabled, then hosts can be shared only using accounts registered on the specified domain name.
619
620           If this setting is disabled or not set, then hosts can be shared using any account.''',
621         },
622         {
623           'name': 'RemoteAccessHostRequireTwoFactor',
624           'type': 'main',
625           'schema': { 'type': 'boolean' },
626           'supported_on': ['chrome.*:22-'],
627           'features': {
628             'dynamic_refresh': True,
629             'per_profile': False,
630           },
631           'example_value': False,
632           'id': 155,
633           'caption': '''Enable two-factor authentication for remote access hosts''',
634           'desc': '''Enables two-factor authentication for remote access hosts instead of a user-specified PIN.
635
636           If this setting is enabled, then users must provide a valid two-factor code when accessing a host.
637
638           If this setting is disabled or not set, then two-factor will not be enabled and the default behavior of having a user-defined PIN will be used.''',
639         },
640         {
641           'name': 'RemoteAccessHostTalkGadgetPrefix',
642           'type': 'string',
643           'schema': { 'type': 'string' },
644           'supported_on': ['chrome.*:22-'],
645           'features': {
646             'dynamic_refresh': True,
647             'per_profile': False,
648           },
649           'example_value': 'chromoting-host',
650           'id': 156,
651           'caption': '''Configure the TalkGadget prefix for remote access hosts''',
652           'desc': '''Configures the TalkGadget prefix that will be used by remote access hosts and prevents users from changing it.
653
654           If specified, this prefix is prepended to the base TalkGadget name to create a full domain name for the TalkGadget. The base TalkGadget domain name is '.talkgadget.google.com'.
655
656           If this setting is enabled, then hosts will use the custom domain name when accessing the TalkGadget instead of the default domain name.
657
658           If this setting is disabled or not set, then the default TalkGadget domain name ('chromoting-host.talkgadget.google.com') will be used for all hosts.
659
660           Remote access clients are not affected by this policy setting. They will always use 'chromoting-client.talkgadget.google.com' to access the TalkGadget.''',
661         },
662         {
663           'name': 'RemoteAccessHostRequireCurtain',
664           'type': 'main',
665           'schema': { 'type': 'boolean' },
666           'supported_on': ['chrome.*:23-'],
667           'features': {
668             'dynamic_refresh': True,
669             'per_profile': False,
670           },
671           'example_value': False,
672           'id': 157,
673           'caption': '''Enable curtaining of remote access hosts''',
674           'desc': '''Enables curtaining of remote access hosts while a connection is in progress.
675
676           If this setting is enabled, then hosts' physical input and output devices are disabled while a remote connection is in progress.
677
678           If this setting is disabled or not set, then both local and remote users can interact with the host when it is being shared.''',
679         },
680         {
681           'name': 'RemoteAccessHostAllowClientPairing',
682           'type': 'main',
683           'schema': { 'type': 'boolean' },
684           'supported_on': ['chrome.*:30-'],
685           'features': {
686             'dynamic_refresh': True,
687             'per_profile': False,
688           },
689           'example_value': False,
690           'id': 234,
691           'caption': '''Enable or disable PIN-less authentication''',
692           'desc': '''If this setting is enabled or not configured, then users can opt to pair clients and hosts at connection time, eliminating the need to enter a PIN every time.
693
694           If this setting is disabled, then this feature will not be available.''',
695         },
696         {
697           'name': 'RemoteAccessHostAllowGnubbyAuth',
698           'type': 'main',
699           'schema': { 'type': 'boolean' },
700           'supported_on': ['chrome.*:35-'],
701           'features': {
702             'dynamic_refresh': True,
703             'per_profile': False,
704           },
705           'example_value': True,
706           'id': 257,
707           'caption': '''Allow gnubby authentication''',
708           'desc': '''If this setting is enabled, then gnubby authentication requests will be proxied across a remote host connection.
709
710           If this setting is disabled or not configured, gnubby authentication requests will not be proxied.''',
711         },
712         {
713           'name': 'RemoteAccessHostAllowRelayedConnection',
714           'type': 'main',
715           'schema': { 'type': 'boolean' },
716           'supported_on': ['chrome.*:36-'],
717           'features': {
718             'dynamic_refresh': True,
719             'per_profile': False,
720           },
721           'example_value': False,
722           'id': 263,
723           'caption': '''Enable the use of relay servers by the remote access host''',
724           'desc': '''Enables usage of relay servers when remote clients are trying to establish a connection to this machine.
725
726           If this setting is enabled, then remote clients can use relay servers to connect to this machine when a direct connection is not available (e.g. due to firewall restrictions).
727
728           Note that if the policy <ph name="REMOTEACCESSHOSTFIREWALLTRAVERSAL_POLICY_NAME">RemoteAccessHostFirewallTraversal</ph> is disabled, this policy will be ignored.
729
730           If this policy is left not set the setting will be enabled.''',
731         },
732         {
733           'name': 'RemoteAccessHostUdpPortRange',
734           'type': 'string',
735           'schema': { 'type': 'string' },
736           'supported_on': ['chrome.*:36-'],
737           'features': {
738             'dynamic_refresh': True,
739             'per_profile': False,
740           },
741           'example_value': '12400-12409',
742           'id': 264,
743           'caption': '''Restrict the UDP port range used by the remote access host''',
744           'desc': '''Restricts the UDP port range used by the remote access host in this machine.
745
746           If this policy is left not set, or if it is set to an empty string, the remote access host will be allowed to use any available port, unless the policy <ph name="REMOTEACCESSHOSTFIREWALLTRAVERSAL_POLICY_NAME">RemoteAccessHostFirewallTraversal</ph> is disabled, in which case the remote access host will use UDP ports in the 12400-12409 range.''',
747         },
748       ],
749     },
750     {
751       'name': 'PrintingEnabled',
752       'type': 'main',
753       'schema': { 'type': 'boolean' },
754       'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:39-'],
755       'features': {
756         'dynamic_refresh': True,
757         'per_profile': True,
758       },
759       'example_value': True,
760       'id': 12,
761       'caption': '''Enable printing''',
762       'desc': '''Enables printing in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
763
764       If this setting is enabled or not configured, users can print.
765
766       If this setting is disabled, users cannot print from <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. Printing is disabled in the wrench menu, extensions, JavaScript applications, etc. It is still possible to print from plugins that bypass <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> while printing. For example, certain Flash applications have the print option in their context menu, which is not covered by this policy.''',
767     },
768     {
769       'name': 'CloudPrintProxyEnabled',
770       'type': 'main',
771       'schema': { 'type': 'boolean' },
772       'supported_on': ['chrome.*:17-'],
773       'features': {
774         'dynamic_refresh': True,
775         'per_profile': True,
776       },
777       'example_value': True,
778       'id': 13,
779       'caption': '''Enable <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> proxy''',
780       'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to act as a proxy between <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> and legacy printers connected to the machine.
781
782       If this setting is enabled or not configured, users can enable the cloud print proxy by authentication with their Google account.
783
784       If this setting is disabled, users cannot enable the proxy, and the machine will not be allowed to share it's printers with <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph>.''',
785     },
786     {
787       'name': 'ForceSafeSearch',
788       'type': 'main',
789       'schema': { 'type': 'boolean' },
790       'supported_on': ['chrome.*:25-', 'chrome_os:25-', 'android:30-'],
791       'features': {
792         'can_be_recommended': False,
793         'dynamic_refresh': True,
794         'per_profile': True,
795       },
796       'example_value': False,
797       'id': 162,
798       'caption': '''Force SafeSearch''',
799       'desc': '''Forces queries in Google Web Search to be done with SafeSearch set to active and prevents users from changing this setting. This setting also forces Safety Mode on YouTube.
800
801       If you enable this setting, SafeSearch in Google Search and YouTube is always active.
802
803       If you disable this setting or do not set a value, SafeSearch in Google Search and YouTube is not enforced.''',
804     },
805     {
806       'name': 'SafeBrowsingEnabled',
807       'type': 'main',
808       'schema': { 'type': 'boolean' },
809       'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
810       'features': {
811         'can_be_recommended': True,
812         'dynamic_refresh': True,
813         'per_profile': True,
814       },
815       'example_value': True,
816       'id': 14,
817       'caption': '''Enable Safe Browsing''',
818       'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s Safe Browsing feature and prevents users from changing this setting.
819
820       If you enable this setting, Safe Browsing is always active.
821
822       If you disable this setting, Safe Browsing is never active.
823
824       If you enable or disable this setting, users cannot change or override the "Enable phishing and malware protection" setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
825
826       If this policy is left not set, this will be enabled but the user will be able to change it.''',
827     },
828     {
829       'name': 'MetricsReportingEnabled',
830       'type': 'main',
831       'schema': { 'type': 'boolean' },
832       'supported_on': ['chrome.*:8-'],
833       'features': {
834         'can_be_recommended': True,
835         'dynamic_refresh': False,
836         'per_profile': False,
837       },
838       'example_value': True,
839       'id': 15,
840       'caption': '''Enable reporting of usage and crash-related data''',
841       'desc': '''Enables anonymous reporting of usage and crash-related data about <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to Google and prevents users from changing this setting.
842
843       If you enable this setting, anonymous reporting of usage and crash-related data is sent to Google.
844
845       If you disable this setting, anonymous reporting of usage and crash-related data is never sent to Google.
846
847       If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
848
849       If this policy is left not set the setting will be what the user chose upon installation / first run.''',
850     },
851     {
852       'name': 'PasswordManager',
853       'type': 'group',
854       'caption': '''Password manager''',
855       'desc': '''Configures the password manager. If the password manager is enabled, then you can choose to enable or disable whether the user may show stored passwords in clear text.''',
856       'policies': [
857         {
858           'name': 'PasswordManagerEnabled',
859           'type': 'main',
860           'schema': { 'type': 'boolean' },
861           'supported_on': [
862             'chrome.*:8-',
863             'chrome_os:11-',
864             'android:30-',
865             'ios:34-',
866           ],
867           'features': {
868             'can_be_recommended': True,
869             'dynamic_refresh': True,
870             'per_profile': True,
871           },
872           'example_value': True,
873           'id': 16,
874           'caption': '''Enable the password manager''',
875           'desc': '''Enables saving passwords and using saved passwords in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
876
877           If you enable this setting, users can have <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> memorize passwords and provide them automatically the next time they log in to a site.
878
879           If you disable this setting, users are not able to save passwords or use already saved passwords.
880
881           If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
882
883           If this policy is left not set, this will be enabled but the user will be able to change it.''',
884         },
885         {
886           'name': 'PasswordManagerAllowShowPasswords',
887           'type': 'main',
888           'schema': { 'type': 'boolean' },
889           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
890           'features': {
891             'dynamic_refresh': True,
892             'per_profile': True,
893           },
894           'example_value': False,
895           'id': 17,
896           'caption': '''Allow users to show passwords in Password Manager''',
897           'desc': '''Controls whether the user may show passwords in clear text in the password manager.
898
899           If you disable this setting, the password manager does not allow showing stored passwords in clear text in the password manager window.
900
901           If you enable or do not set this policy, users can view their passwords in clear text in the password manager.''',
902         },
903       ],
904     },
905     {
906       'name': 'AutoFillEnabled',
907       'type': 'main',
908       'schema': { 'type': 'boolean' },
909       'supported_on': [
910         'chrome.*:8-',
911         'chrome_os:11-',
912         'android:30-',
913         'ios:34-',
914       ],
915       'features': {
916         'can_be_recommended': True,
917         'dynamic_refresh': True,
918         'per_profile': True,
919       },
920       'example_value': False,
921       'id': 18,
922       'caption': '''Enable AutoFill''',
923       'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s AutoFill feature and allows users to auto complete web forms using previously stored information such as address or credit card information.
924
925       If you disable this setting, AutoFill will be inaccessible to users.
926
927       If you enable this setting or do not set a value, AutoFill will remain under the control of the user. This will allow them to configure AutoFill profiles and to switch AutoFill on or off at their own discretion.''',
928     },
929     {
930       'name': 'DisabledPlugins',
931       'type': 'list',
932       'schema': {
933         'type': 'array',
934         'items': { 'type': 'string' },
935       },
936       'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
937       'features': {
938         'dynamic_refresh': True,
939         'per_profile': True,
940       },
941       'example_value': ['Java', 'Shockwave Flash', 'Chrome PDF Viewer'],
942       'id': 19,
943       'caption': '''Specify a list of disabled plugins''',
944       'desc': '''Specifies a list of plugins that are disabled in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
945
946       The wildcard characters '*' and '?' can be used to match sequences of arbitrary characters. '*' matches an arbitrary number of characters while '?' specifies an optional single character, i.e. matches zero or one characters. The escape character is '\\', so to match actual '*', '?', or '\\' characters, you can put a '\\' in front of them.
947
948       If you enable this setting, the specified list of plugins is never used in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. The plugins are marked as disabled in 'about:plugins' and users cannot enable them.
949
950       Note that this policy can be overridden by EnabledPlugins and DisabledPluginsExceptions.
951
952       If this policy is left not set the user can use any plugin installed on the system except for hard-coded incompatible, outdated or dangerous plugins.''',
953       'label': '''List of disabled plugins''',
954     },
955     {
956       'name': 'EnabledPlugins',
957       'type': 'list',
958       'schema': {
959         'type': 'array',
960         'items': { 'type': 'string' },
961       },
962       'supported_on': ['chrome.*:11-', 'chrome_os:11-'],
963       'features': {
964         'dynamic_refresh': True,
965         'per_profile': True,
966       },
967       'example_value': ['Java', 'Shockwave Flash', 'Chrome PDF Viewer'],
968       'id': 78,
969       'caption': '''Specify a list of enabled plugins''',
970       'desc': '''Specifies a list of plugins that are enabled in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
971
972       The wildcard characters '*' and '?' can be used to match sequences of arbitrary characters. '*' matches an arbitrary number of characters while '?' specifies an optional single character, i.e. matches zero or one characters. The escape character is '\\', so to match actual '*', '?', or '\\' characters, you can put a '\\' in front of them.
973
974       The specified list of plugins is always used in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> if they are installed. The plugins are marked as enabled in 'about:plugins' and users cannot disable them.
975
976       Note that this policy overrides both DisabledPlugins and DisabledPluginsExceptions.
977
978       If this policy is left not set the user can disable any plugin installed on the system.''',
979       'label': '''List of enabled plugins''',
980     },
981     {
982       'name': 'DisabledPluginsExceptions',
983       'type': 'list',
984       'schema': {
985         'type': 'array',
986         'items': { 'type': 'string' },
987       },
988       'supported_on': ['chrome.*:11-', 'chrome_os:11-'],
989       'features': {
990         'dynamic_refresh': True,
991         'per_profile': True,
992       },
993       'example_value': ['Java', 'Shockwave Flash', 'Chrome PDF Viewer'],
994       'id': 79,
995       'caption': '''Specify a list of plugins that the user can enable or disable''',
996       'desc': '''Specifies a list of plugins that user can enable or disable in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
997
998       The wildcard characters '*' and '?' can be used to match sequences of arbitrary characters. '*' matches an arbitrary number of characters while '?' specifies an optional single character, i.e. matches zero or one characters. The escape character is '\\', so to match actual '*', '?', or '\\' characters, you can put a '\\' in front of them.
999
1000       If you enable this setting, the specified list of plugins can be used in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. Users can enable or disable them in 'about:plugins', even if the plugin also matches a pattern in DisabledPlugins. Users can also enable and disable plugins that don't match any patterns in DisabledPlugins, DisabledPluginsExceptions and EnabledPlugins.
1001
1002       This policy is meant to allow for strict plugin blacklisting where the 'DisabledPlugins' list contains wildcarded entries like disable all plugins '*' or disable all Java plugins '*Java*' but the administrator wishes to enable some particular version like 'IcedTea Java 2.3'. This particular versions can be specified in this policy.
1003
1004       Note that both the plugin name and the plugin's group name have to be exempted. Each plugin group is shown in a separate section in about:plugins; each section may have one or more plugins. For example, the "Shockwave Flash" plugin belongs to the "Adobe Flash Player" group, and both names have to have a match in the exceptions list if that plugin is to be exempted from the blacklist.
1005
1006       If this policy is left not set any plugin that matches the patterns in the 'DisabledPlugins' will be locked disabled and the user won't be able to enable them.''',
1007       'label': '''List of exceptions to the list of disabled plugins''',
1008     },
1009     {
1010       'name': 'DisablePluginFinder',
1011       'type': 'main',
1012       'schema': { 'type': 'boolean' },
1013       'supported_on': ['chrome.*:11-', 'chrome_os:11-'],
1014       'features': {
1015         'dynamic_refresh': True,
1016         'per_profile': False,
1017       },
1018       'example_value': True,
1019       'id': 66,
1020       'caption': '''Specify whether the plugin finder should be disabled''',
1021       'desc': '''If you set this setting to enabled the automatic search and installation of missing plugins will be disabled in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1022
1023       Setting this option to disabled or leave it not set the plugin finder will be active.''',
1024       'label': '''Disable plugin finder''',
1025     },
1026     {
1027       'name': 'SyncDisabled',
1028       'type': 'main',
1029       'schema': { 'type': 'boolean' },
1030       'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
1031       'features': {
1032         'dynamic_refresh': True,
1033         'per_profile': True,
1034       },
1035       'example_value': True,
1036       'id': 20,
1037       'caption': '''Disable synchronization of data with Google''',
1038       'desc': '''Disables data synchronization in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> using Google-hosted synchronization services and prevents users from changing this setting.
1039
1040       If you enable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1041
1042       If this policy is left not set Google Sync will be available for the user to choose whether to use it or not.''',
1043     },
1044     {
1045       'name': 'SigninAllowed',
1046       'type': 'main',
1047       'schema': { 'type': 'boolean' },
1048       'supported_on': ['chrome.*:27-', 'android:38-'],
1049       'features': {
1050         'dynamic_refresh': True,
1051         'per_profile': True,
1052       },
1053       'example_value': True,
1054       'id': 190,
1055       'caption': '''Allows sign in to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>''',
1056       'desc': '''Allows the user to sign in to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing this setting.
1057
1058       If you set this policy, you can configure if a user is allowed to sign in to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> or not.''',
1059     },
1060     {
1061       'name': 'EnableWebBasedSignin',
1062       'type': 'main',
1063       'schema': { 'type': 'boolean' },
1064       'supported_on': ['chrome.*:35-'],
1065       'features': {
1066         'dynamic_refresh': False,
1067         'per_profile': False,
1068       },
1069       'example_value': False,
1070       'id': 265,
1071       'caption': '''Enables the old web-based signin''',
1072       'desc': '''Enables the old web-based signin flow.
1073
1074       This setting is useful for enterprise customers who are using SSO solutions that are not compatible with the new inline signin flow yet.
1075       If you enable this setting, the old web-based signin flow would be used.
1076       If you disable this setting or leave it not set, the new inline signin flow would be used by default. Users may still enable the old web-based signin flow through the command line flag --enable-web-based-signin.
1077
1078       The experimental setting will be removed in the future when the inline signin fully supports all SSO signin flows.''',
1079     },
1080     {
1081       'name': 'UserDataDir',
1082       'type': 'string',
1083       'schema': { 'type': 'string' },
1084       'supported_on': ['chrome.win:11-', 'chrome.mac:11-'],
1085       'features': {
1086         'dynamic_refresh': False,
1087         'per_profile': False,
1088       },
1089       'example_value': '${users}/${user_name}/Chrome',
1090       'id': 63,
1091       'caption': '''Set user data directory''',
1092       'desc': '''Configures the directory that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use for storing user data.
1093
1094       If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use the provided directory regardless whether the user has specified the '--user-data-dir' flag or not.
1095
1096       See http://www.chromium.org/administrators/policy-list-3/user-data-directory-variables for a list of variables that can be used.
1097
1098       If this policy is left not set the default profile path will be used and the user will be able to override it with the '--user-data-dir' command line flag.''',
1099       'label': '''Set user data directory''',
1100     },
1101     {
1102       'name': 'DiskCacheDir',
1103       'type': 'string',
1104       'schema': { 'type': 'string' },
1105       'supported_on': ['chrome.*:13-'],
1106       'features': {
1107         'dynamic_refresh': False,
1108         'per_profile': False,
1109       },
1110       'example_value': '${user_home}/Chrome_cache',
1111       'id': 88,
1112       'caption': '''Set disk cache directory''',
1113       'desc': '''Configures the directory that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use for storing cached files on the disk.
1114
1115       If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use the provided directory regardless whether the user has specified the '--disk-cache-dir' flag or not.
1116
1117       See http://www.chromium.org/administrators/policy-list-3/user-data-directory-variables for a list of variables that can be used.
1118
1119       If this policy is left not set the default cache directory will be used and the user will be able to override it with the '--disk-cache-dir' command line flag.''',
1120       'label': '''Set disk cache directory''',
1121     },
1122     {
1123       'name': 'DiskCacheSize',
1124       'type': 'int',
1125       'schema': { 'type': 'integer' },
1126       'supported_on': ['chrome.*:17-'],
1127       'features': {
1128         'dynamic_refresh': False,
1129         'per_profile': False,
1130       },
1131       'example_value': 104857600,
1132       'id': 110,
1133       'caption': '''Set disk cache size in bytes''',
1134       'desc': '''Configures the cache size that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use for storing cached files on the disk.
1135
1136       If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use the provided cache size regardless whether the user has specified the '--disk-cache-size' flag or not. The value specified in this policy is not a hard boundary but rather a suggestion to the caching system, any value below a few megabytes is too small and will be rounded up to a sane minimum.
1137
1138       If the value of this policy is 0, the default cache size will be used but the user will not be able to change it.
1139
1140       If this policy is not set the default size will be used and the user will be able to override it with the --disk-cache-size flag.''',
1141       'label': '''Set disk cache size''',
1142     },
1143     {
1144       'name': 'MediaCacheSize',
1145       'type': 'int',
1146       'schema': { 'type': 'integer' },
1147       'supported_on': ['chrome.*:17-'],
1148       'features': {
1149         'dynamic_refresh': False,
1150         'per_profile': False,
1151       },
1152       'example_value': 104857600,
1153       'id': 111,
1154       'caption': '''Set media disk cache size in bytes''',
1155       'desc': '''Configures the cache size that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use for storing cached media files on the disk.
1156
1157       If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use the provided cache size regardless whether the user has specified the '--media-cache-size' flag or not. The value specified in this policy is not a hard boundary but rather a suggestion to the caching system, any value below a few megabytes is too small and will be rounded up to a sane minimum.
1158
1159       If the value of this policy is 0, the default cache size will be used but the user will not be able to change it.
1160
1161       If this policy is not set the default size will be used and the user will be able to override it with the --media-cache-size flag.''',
1162       'label': '''Set media disk cache size''',
1163     },
1164     {
1165       'name': 'DownloadDirectory',
1166       'type': 'string',
1167       'schema': { 'type': 'string' },
1168       'supported_on': ['chrome.*:11-', 'chrome_os:35-'],
1169       'features': {
1170         'can_be_recommended': True,
1171         'dynamic_refresh': True,
1172         'per_profile': True,
1173       },
1174       'example_value': '/home/${user_name}/Downloads',
1175       'id': 64,
1176       'caption': '''Set download directory''',
1177       'desc': '''Configures the directory that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use for downloading files.
1178
1179       If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use the provided directory regardless whether the user has specified one or enabled the flag to be prompted for download location every time.
1180
1181       See http://www.chromium.org/administrators/policy-list-3/user-data-directory-variables for a list of variables that can be used.
1182
1183       If this policy is left not set the default download directory will be used and the user will be able to change it.''',
1184       'label': '''Set download directory''',
1185     },
1186     {
1187       'name': 'ClearSiteDataOnExit',
1188       'type': 'main',
1189       'schema': { 'type': 'boolean' },
1190       'supported_on': ['chrome.*:11-28', 'chrome_os:11-28'],
1191       'features': {
1192         'can_be_recommended': True,
1193         'dynamic_refresh': True,
1194         'per_profile': True,
1195       },
1196       'deprecated': True,
1197       'example_value': True,
1198       'id': 65,
1199       'caption': '''Clear site data on browser shutdown (deprecated)''',
1200       'desc': '''This policy has been retired as of <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 29.''',
1201       'label': '''Clear site data on browser shutdown (deprecated)''',
1202     },
1203     {
1204       'name': 'Proxy',
1205       'type': 'group',
1206       'caption': '''Proxy server''',
1207       'desc': '''Allows you to specify the proxy server used by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy settings.
1208
1209       If you choose to never use a proxy server and always connect directly, all other options are ignored.
1210
1211       If you choose to auto detect the proxy server, all other options are ignored.
1212
1213       For detailed examples, visit:
1214       <ph name="PROXY_HELP_URL">http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett<ex>http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>
1215
1216       If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> ignores all proxy-related options specified from the command line.
1217
1218       Leaving these policies not set will allow the users to choose the proxy settings on their own.''',
1219       'policies': [
1220         {
1221           'name': 'ProxyMode',
1222           'type': 'string-enum',
1223           'schema': {
1224             'type': 'string',
1225             'enum': [
1226               'direct',
1227               'auto_detect',
1228               'pac_script',
1229               'fixed_servers',
1230               'system'
1231             ],
1232           },
1233           'items': [
1234             {
1235               'name': 'ProxyDisabled',
1236               'value': 'direct',
1237               'caption': '''Never use a proxy''',
1238             },
1239             {
1240               'name': 'ProxyAutoDetect',
1241               'value': 'auto_detect',
1242               'caption': '''Auto detect proxy settings''',
1243             },
1244             {
1245               'name': 'ProxyPacScript',
1246               'value': 'pac_script',
1247               'caption': '''Use a .pac proxy script''',
1248             },
1249             {
1250               'name': 'ProxyFixedServers',
1251               'value': 'fixed_servers',
1252               'caption': '''Use fixed proxy servers''',
1253             },
1254             {
1255               'name': 'ProxyUseSystem',
1256               'value': 'system',
1257               'caption': '''Use system proxy settings''',
1258             },
1259           ],
1260           'supported_on': [
1261             'chrome.*:10-',
1262             'chrome_os:11-',
1263             'android:30-',
1264             'ios:34-',
1265           ],
1266           'features': {
1267             'dynamic_refresh': True,
1268             'per_profile': True,
1269           },
1270           'example_value': 'direct',
1271           'id': 21,
1272           'caption': '''Choose how to specify proxy server settings''',
1273           'desc': '''Allows you to specify the proxy server used by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy settings.
1274
1275           If you choose to never use a proxy server and always connect directly, all other options are ignored.
1276
1277           If you choose to use system proxy settings or auto detect the proxy server, all other options are ignored.
1278
1279           If you choose fixed server proxy mode, you can specify further options in 'Address or URL of proxy server' and 'Comma-separated list of proxy bypass rules'.
1280
1281           If you choose to use a .pac proxy script, you must specify the URL to the script in 'URL to a proxy .pac file'.
1282
1283           For detailed examples, visit:
1284           <ph name="PROXY_HELP_URL">http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett<ex>http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>
1285
1286           If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> ignores all proxy-related options specified from the command line.
1287
1288           Leaving this policy not set will allow the users to choose the proxy settings on their own.''',
1289         },
1290         {
1291           'name': 'ProxyServerMode',
1292           'type': 'int-enum',
1293           'schema': {
1294             'type': 'integer',
1295             'enum': [ 0, 1, 2, 3 ],
1296           },
1297           'items': [
1298             {
1299               'name': 'ProxyServerDisabled',
1300               'value': 0,
1301               'caption': '''Never use a proxy''',
1302             },
1303             {
1304               'name': 'ProxyServerAutoDetect',
1305               'value': 1,
1306               'caption': '''Auto detect proxy settings''',
1307             },
1308             {
1309               'name': 'ProxyServerManual',
1310               'value': 2,
1311               'caption': '''Manually specify proxy settings''',
1312             },
1313             {
1314               'name': 'ProxyServerUseSystem',
1315               'value': 3,
1316               'caption': '''Use system proxy settings''',
1317             },
1318           ],
1319           'supported_on': [
1320             'chrome.*:8-',
1321             'chrome_os:11-',
1322             'android:30-',
1323             'ios:34-',
1324           ],
1325           'features': {
1326             'dynamic_refresh': True,
1327             'per_profile': True,
1328           },
1329           'deprecated': True,
1330           'example_value': 2,
1331           'id': 22,
1332           'caption': '''Choose how to specify proxy server settings''',
1333           'desc': '''This policy is deprecated, use ProxyMode instead.
1334
1335           Allows you to specify the proxy server used by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy settings.
1336
1337           If you choose to never use a proxy server and always connect directly, all other options are ignored.
1338
1339           If you choose to use system proxy settings or auto detect the proxy server, all other options are ignored.
1340
1341           If you choose manual proxy settings, you can specify further options in 'Address or URL of proxy server', 'URL to a proxy .pac file' and 'Comma-separated list of proxy bypass rules'.
1342
1343           For detailed examples, visit:
1344           <ph name="PROXY_HELP_URL">http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett<ex>http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>
1345
1346           If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> ignores all proxy-related options specified from the command line.
1347
1348           Leaving this policy not set will allow the users to choose the proxy settings on their own.''',
1349         },
1350         {
1351           'name': 'ProxyServer',
1352           'type': 'string',
1353           'schema': { 'type': 'string' },
1354           'supported_on': [
1355             'chrome.*:8-',
1356             'chrome_os:11-',
1357             'android:30-',
1358             'ios:34-',
1359           ],
1360           'features': {
1361             'dynamic_refresh': True,
1362             'per_profile': True,
1363           },
1364           'example_value': '123.123.123.123:8080',
1365           'id': 23,
1366           'caption': '''Address or URL of proxy server''',
1367           'desc': '''You can specify the URL of the proxy server here.
1368
1369           This policy only takes effect if you have selected manual proxy settings at 'Choose how to specify proxy server settings'.
1370
1371           You should leave this policy not set if you have selected any other mode for setting proxy policies.
1372
1373           For more options and detailed examples, visit:
1374           <ph name="PROXY_HELP_URL">http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett<ex>http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>''',
1375         },
1376         {
1377           'name': 'ProxyPacUrl',
1378           'type': 'string',
1379           'schema': { 'type': 'string' },
1380           'supported_on': [
1381             'chrome.*:8-',
1382             'chrome_os:11-',
1383             'android:30-',
1384             'ios:34-',
1385           ],
1386           'features': {
1387             'dynamic_refresh': True,
1388             'per_profile': True,
1389           },
1390           'example_value': 'http://internal.site/example.pac',
1391           'id': 24,
1392           'caption': '''URL to a proxy .pac file''',
1393           'desc': '''You can specify a URL to a proxy .pac file here.
1394
1395           This policy only takes effect if you have selected manual proxy settings at 'Choose how to specify proxy server settings'.
1396
1397           You should leave this policy not set if you have selected any other mode for setting proxy policies.
1398
1399           For detailed examples, visit:
1400           <ph name="PROXY_HELP_URL">http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett<ex>http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>''',
1401         },
1402         {
1403           'name': 'ProxyBypassList',
1404           'type': 'string',
1405           'schema': { 'type': 'string' },
1406           'supported_on': [
1407             'chrome.*:8-',
1408             'chrome_os:11-',
1409             'android:30-',
1410             'ios:34-',
1411           ],
1412           'features': {
1413             'dynamic_refresh': True,
1414             'per_profile': True,
1415           },
1416           'example_value': 'http://www.example1.com,http://www.example2.com,http://internalsite/',
1417           'id': 25,
1418           'caption': '''Proxy bypass rules''',
1419           'desc': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will bypass any proxy for the list of hosts given here.
1420
1421           This policy only takes effect if you have selected manual proxy settings at 'Choose how to specify proxy server settings'.
1422
1423           You should leave this policy not set if you have selected any other mode for setting proxy policies.
1424
1425           For more detailed examples, visit:
1426           <ph name="PROXY_HELP_URL">http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett<ex>http://www.chromium.org/developers/design-documents/network-settings#TOC-Command-line-options-for-proxy-sett</ex></ph>''',
1427           'label': '''Comma-separated list of proxy bypass rules''',
1428         },
1429       ],
1430     },
1431     {
1432       # TODO(joaodasilva): Make this the default and deprecate the other proxy
1433       # policies once all providers are ready to load 'dict' policies.
1434       # This is currently an internal policy.
1435       # http://crbug.com/108992, http://crbug.com/108996
1436       'name': 'ProxySettings',
1437       'type': 'dict',
1438       'schema': {
1439         'type': 'object',
1440         'properties': {
1441           'ProxyMode': { 'type': 'string' },
1442           'ProxyPacUrl': { 'type': 'string' },
1443           'ProxyServer': { 'type': 'string' },
1444           'ProxyBypassList': { 'type': 'string' },
1445           'ProxyServerMode': { 'type': 'string' },
1446         },
1447       },
1448       'supported_on': [
1449         'chrome.*:18-',
1450         'chrome_os:18-',
1451         'android:30-',
1452         'ios:34-',
1453       ],
1454       'future': True,
1455       'features': {
1456         'dynamic_refresh': True,
1457         'per_profile': True,
1458       },
1459       'example_value': { "ProxyMode": "direct" },
1460       'id': 116,
1461       'caption': '''Proxy settings''',
1462       'desc': '''Configures the proxy settings for <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1463
1464       This policy isn't ready for usage yet, please don't use it.''',
1465     },
1466     {
1467       'name': 'HTTPAuthentication',
1468       'type': 'group',
1469       'caption': '''Policies for HTTP Authentication''',
1470       'desc': '''Policies related to integrated HTTP authentication.''',
1471       'policies': [
1472         {
1473           'name': 'AuthSchemes',
1474           'type': 'string',
1475           'schema': { 'type': 'string' },
1476           'supported_on': ['chrome.*:9-'],
1477           'features': {
1478             'dynamic_refresh': False,
1479             'per_profile': False,
1480           },
1481           'example_value': 'basic,digest,ntlm,negotiate',
1482           'id': 26,
1483           'caption': '''Supported authentication schemes''',
1484           'desc': '''Specifies which HTTP Authentication schemes are supported by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1485
1486           Possible values are 'basic', 'digest', 'ntlm' and 'negotiate'. Separate multiple values with commas.
1487
1488           If this policy is left not set, all four schemes will be used.''',
1489         },
1490         {
1491           'name': 'DisableAuthNegotiateCnameLookup',
1492           'type': 'main',
1493           'schema': { 'type': 'boolean' },
1494           'supported_on': ['chrome.*:9-'],
1495           'features': {
1496             'dynamic_refresh': False,
1497             'per_profile': False,
1498           },
1499           'example_value': False,
1500           'id': 27,
1501           'caption': '''Disable CNAME lookup when negotiating Kerberos authentication''',
1502           'desc': '''Specifies whether the generated Kerberos SPN is based on the canonical DNS name or the original name entered.
1503
1504           If you enable this setting, CNAME lookup will be skipped and the server name will be used as entered.
1505
1506           If you disable this setting or leave it not set, the canonical name of the server will be determined via CNAME lookup.''',
1507         },
1508         {
1509           'name': 'EnableAuthNegotiatePort',
1510           'type': 'main',
1511           'schema': { 'type': 'boolean' },
1512           'supported_on': ['chrome.*:9-'],
1513           'features': {
1514             'dynamic_refresh': False,
1515             'per_profile': False,
1516           },
1517           'example_value': False,
1518           'id': 28,
1519           'caption': '''Include non-standard port in Kerberos SPN''',
1520           'desc': '''Specifies whether the generated Kerberos SPN should include a non-standard port.
1521
1522           If you enable this setting, and a non-standard port (i.e., a port other than 80 or 443) is entered, it will be included in the generated Kerberos SPN.
1523
1524           If you disable this setting or leave it not set, the generated Kerberos SPN will not include a port in any case.''',
1525         },
1526         {
1527           'name': 'AuthServerWhitelist',
1528           'type': 'string',
1529           'schema': { 'type': 'string' },
1530           'supported_on': ['chrome.*:9-'],
1531           'features': {
1532             'dynamic_refresh': False,
1533             'per_profile': False,
1534           },
1535           'example_value': '*example.com,foobar.com,*baz',
1536           'id': 29,
1537           'caption': '''Authentication server whitelist''',
1538           'desc': '''Specifies which servers should be whitelisted for integrated authentication. Integrated authentication is only enabled when <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> receives an authentication challenge from a proxy or from a server which is in this permitted list.
1539
1540           Separate multiple server names with commas. Wildcards (*) are allowed.
1541
1542           If you leave this policy not set <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will try to detect if a server is on the Intranet and only then will it respond to IWA requests.  If a server is detected as Internet then IWA requests from it will be ignored by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
1543         },
1544         {
1545           'name': 'AuthNegotiateDelegateWhitelist',
1546           'type': 'string',
1547           'schema': { 'type': 'string' },
1548           'supported_on': ['chrome.*:9-'],
1549           'features': {
1550             'dynamic_refresh': False,
1551             'per_profile': False,
1552           },
1553           'example_value': 'foobar.example.com',
1554           'id': 30,
1555           'caption': '''Kerberos delegation server whitelist''',
1556           'desc': '''Servers that <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> may delegate to.
1557
1558           Separate multiple server names with commas. Wildcards (*) are allowed.
1559
1560           If you leave this policy not set <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will not delegate user credentials even if a server is detected as Intranet.''',
1561         },
1562         {
1563           'name': 'GSSAPILibraryName',
1564           'type': 'string',
1565           'schema': { 'type': 'string' },
1566           'supported_on': ['chrome.linux:9-'],
1567           'features': {
1568             'dynamic_refresh': False,
1569             'per_profile': False,
1570           },
1571           'example_value': 'libgssapi_krb5.so.2',
1572           'id': 31,
1573           'caption': '''GSSAPI library name''',
1574           'desc': '''Specifies which GSSAPI library to use for HTTP Authentication. You can set either just a library name, or a full path.
1575
1576           If no setting is provided, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will fall back to using a default library name.''',
1577         },
1578         {
1579           'name': 'AllowCrossOriginAuthPrompt',
1580           'type': 'main',
1581           'schema': { 'type': 'boolean' },
1582           'supported_on': ['chrome.*:13-'],
1583           'features': {
1584             'dynamic_refresh': True,
1585             'per_profile': False,
1586           },
1587           'example_value': False,
1588           'id': 89,
1589           'caption': '''Cross-origin HTTP Basic Auth prompts''',
1590           'desc': '''Controls whether third-party sub-content on a page is allowed to pop-up an HTTP Basic Auth dialog box.
1591
1592           Typically this is disabled as a phishing defense. If this policy is not set, this is disabled and third-party sub-content will not be allowed to pop up a HTTP Basic Auth dialog box.''',
1593         },
1594       ],
1595     },
1596     {
1597       'name': 'Extensions',
1598       'type': 'group',
1599       'caption': '''Extensions''',
1600       'desc': '''Configures extension-related policies. The user is not allowed to install blacklisted extensions unless they are whitelisted. You can also force <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to automatically install extensions by specifying them in <ph name="EXTENSIONINSTALLFORCELIST_POLICY_NAME">ExtensionInstallForcelist</ph>. Force-installed extensions are installed regardless whether they are present in the blacklist.''',
1601       'policies': [
1602         {
1603           'name': 'ExtensionInstallBlacklist',
1604           'type': 'list',
1605           'schema': {
1606             'type': 'array',
1607             'items': { 'type': 'string' },
1608           },
1609           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
1610           'features': {
1611             'dynamic_refresh': True,
1612             'per_profile': True,
1613           },
1614           'example_value': ['extension_id1', 'extension_id2'],
1615           'id': 32,
1616           'caption': '''Configure extension installation blacklist''',
1617           'desc': '''Allows you to specify which extensions the users can NOT install. Extensions already installed will be removed if blacklisted.
1618
1619           A blacklist value of '*' means all extensions are blacklisted unless they are explicitly listed in the whitelist.
1620
1621           If this policy is left not set the user can install any extension in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
1622           'label': '''Extension IDs the user should be prevented from installing (or * for all)''',
1623         },
1624         {
1625           'name': 'ExtensionInstallWhitelist',
1626           'type': 'list',
1627           'schema': {
1628             'type': 'array',
1629             'items': { 'type': 'string' },
1630           },
1631           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
1632           'features': {
1633             'dynamic_refresh': True,
1634             'per_profile': True,
1635           },
1636           'example_value': ['extension_id1', 'extension_id2'],
1637           'id': 33,
1638           'caption': '''Configure extension installation whitelist''',
1639           'desc': '''Allows you to specify which extensions are not subject to the blacklist.
1640
1641           A blacklist value of * means all extensions are blacklisted and users can only install extensions listed in the whitelist.
1642
1643           By default, all extensions are whitelisted, but if all extensions have been blacklisted by policy, the whitelist can be used to override that policy.''',
1644           'label': '''Extension IDs to exempt from the blacklist''',
1645         },
1646         {
1647           'name': 'ExtensionInstallForcelist',
1648           'type': 'list',
1649           'schema': {
1650             'type': 'array',
1651             'items': { 'type': 'string' },
1652           },
1653           'supported_on': ['chrome.*:9-', 'chrome_os:11-'],
1654           'features': {
1655             'dynamic_refresh': True,
1656             'per_profile': True,
1657           },
1658           'example_value': ['lcncmkcnkcdbbanbjakcencbaoegdjlp;https://clients2.google.com/service/update2/crx'],
1659           'id': 34,
1660           'caption': '''Configure the list of force-installed extensions''',
1661           'desc': '''Allows you to specify a list of extensions that will be installed silently, without user interaction.
1662
1663           Each item of the list is a string that contains an extension ID and an update URL delimited by a semicolon (<ph name="SEMICOLON">;</ph>). The extension ID is the 32-letter string found e.g. on <ph name="CHROME_EXTENSIONS_LINK">chrome://extensions</ph> when in developer mode. The update URL should point to an Update Manifest XML document as described at <ph name="LINK_TO_EXTENSION_DOC1">https://developer.chrome.com/extensions/autoupdate</ph>. Note that the update URL set in this policy is only used for the initial installation; subsequent updates of the extension will use the update URL indicated in the extension's manifest.
1664
1665           For each item, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will retrieve the extension specified by the extension ID from the update service at the specified update URL and silently install it.
1666
1667           For example, <ph name="EXTENSION_POLICY_EXAMPLE">lcncmkcnkcdbbanbjakcencbaoegdjlp;https://clients2.google.com/service/update2/crx</ph> installs the <ph name="EXTENSION_POLICY_EXAMPLE_EXTENSION_NAME">Google SSL Web Search</ph> extension from the standard Chrome Web Store update URL. For more information about hosting extensions, see: <ph name="LINK_TO_EXTENSION_DOC2">https://developer.chrome.com/extensions/hosting</ph>.
1668
1669           Users will be unable to uninstall extensions that are specified by this policy. If you remove an extension from this list, then it will be automatically uninstalled by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. Extensions specified in this list are also automatically whitelisted for installation; the ExtensionsInstallBlacklist does not affect them.
1670
1671           If this policy is left not set the user can uninstall any extension  in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
1672           'label': '''Extension IDs and update URLs to be silently installed''',
1673         },
1674         {
1675           'name': 'ExtensionInstallSources',
1676           'type': 'list',
1677           'schema': {
1678             'type': 'array',
1679             'items': { 'type': 'string' },
1680           },
1681           'supported_on': ['chrome.*:21-', 'chrome_os:21-'],
1682           'features': {
1683             'dynamic_refresh': True,
1684             'per_profile': True,
1685           },
1686           'example_value': ['https://corp.mycompany.com/*'],
1687           'id': 148,
1688           'caption': '''Configure extension, app, and user script install sources''',
1689           'desc': '''Allows you to specify which URLs are allowed to install extensions, apps, and themes.
1690
1691           Starting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> 21, it is more difficult to install extensions, apps, and user scripts from outside the Chrome Web Store. Previously, users could click on a link to a *.crx file, and <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> would offer to install the file after a few warnings. After <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> 21, such files must be downloaded and dragged onto the <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> settings page. This setting allows specific URLs to have the old, easier installation flow.
1692
1693           Each item in this list is an extension-style match pattern (see https://developer.chrome.com/extensions/match_patterns). Users will be able to easily install items from any URL that matches an item in this list. Both the location of the *.crx file and the page where the download is started from (i.e. the referrer) must be allowed by these patterns.
1694
1695           ExtensionInstallBlacklist takes precedence over this policy. That is, an extension on the blacklist won't be installed, even if it happens from a site on this list.''',
1696           'label': '''URL patterns to allow extension, app, and user script installs from''',
1697         },
1698         {
1699           'name': 'ExtensionAllowedTypes',
1700           'type': 'list',
1701           'schema': {
1702             'type': 'array',
1703             'items': {
1704               'type': 'string',
1705               'enum': [
1706                 'extension',
1707                 'theme',
1708                 'user_script',
1709                 'hosted_app',
1710                 'legacy_packaged_app',
1711                 'platform_app'
1712               ],
1713             },
1714           },
1715           'supported_on': ['chrome.*:25-', 'chrome_os:25-'],
1716           'features': {
1717             'dynamic_refresh': True,
1718             'per_profile': True,
1719           },
1720           'example_value': ['hosted_app'],
1721           'id': 168,
1722           'caption': '''Configure allowed app/extension types''',
1723           'desc': '''Controls which app/extension types are allowed to be installed.
1724
1725           This setting white-lists the allowed types of extension/apps that can be installed in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. The value is a list of strings, each of which should be one of the following: "extension", "theme", "user_script", "hosted_app", "legacy_packaged_app", "platform_app". See the <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> extensions documentation for more information on these types.
1726
1727           Note that this policy also affects extensions and apps to be force-installed via ExtensionInstallForcelist.
1728
1729           If this setting is configured, extensions/apps which have a type that is not on the list will not be installed.
1730
1731           If this settings is left not-configured, no restrictions on the acceptable extension/app types are enforced.''',
1732           'label': '''Types of extensions/apps that are allowed to be installed''',
1733         },
1734       ],
1735     },
1736     {
1737       'name': 'ShowHomeButton',
1738       'type': 'main',
1739       'schema': { 'type': 'boolean' },
1740       'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
1741       'features': {
1742         'can_be_recommended': True,
1743         'dynamic_refresh': True,
1744         'per_profile': True,
1745       },
1746       'example_value': True,
1747       'id': 35,
1748       'caption': '''Show Home button on toolbar''',
1749       'desc': '''Shows the Home button on <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s toolbar.
1750
1751       If you enable this setting, the Home button is always shown.
1752
1753       If you disable this setting, the Home button is never shown.
1754
1755       If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1756
1757       Leaving this policy not set will allow the user to choose whether to show the home button.''',
1758     },
1759     {
1760       'name': 'DeveloperToolsDisabled',
1761       'type': 'main',
1762       'schema': { 'type': 'boolean' },
1763       'supported_on': ['chrome.*:9-', 'chrome_os:11-'],
1764       'features': {
1765         'dynamic_refresh': True,
1766         'per_profile': True,
1767       },
1768       'example_value': False,
1769       'id': 36,
1770       'caption': '''Disable Developer Tools''',
1771       'desc': '''Disables the Developer Tools and the JavaScript console.
1772
1773       If you enable this setting, the Developer Tools can not be accessed and web-site elements can not be inspected anymore. Any keyboard shortcuts and any menu or context menu entries to open the Developer Tools or the JavaScript Console will be disabled.
1774
1775       Setting this option to disabled or leaving it not set will allow the use to use the Developer Tools and the JavaScript console.''',
1776     },
1777     {
1778       'name': 'RestoreOnStartupGroup',
1779       'type': 'group',
1780       'caption': '''Startup pages''',
1781       'desc': '''Allows you to configure the pages that are loaded on startup.
1782
1783       The contents of the list 'URLs to open at startup' are ignored unless you select 'Open a list of URLs' in 'Action on startup'.''',
1784       'policies': [
1785         {
1786           'name': 'RestoreOnStartup',
1787           'type': 'int-enum',
1788           'schema': {
1789             'type': 'integer',
1790             'enum': [ 1, 4, 5 ],
1791           },
1792           'items': [
1793             {
1794               'name': 'RestoreOnStartupIsNewTabPage',
1795               'value': 5,
1796               'caption': '''Open New Tab Page''',
1797             },
1798             {
1799               'name': 'RestoreOnStartupIsLastSession',
1800               'value': 1,
1801               'caption': '''Restore the last session''',
1802             },
1803             {
1804               'name': 'RestoreOnStartupIsURLs',
1805               'value': 4,
1806               'caption': '''Open a list of URLs''',
1807             },
1808           ],
1809           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
1810           'features': {
1811             'can_be_recommended': True,
1812             'dynamic_refresh': True,
1813             'per_profile': True,
1814           },
1815           'example_value': 4,
1816           'id': 37,
1817           'caption': '''Action on startup''',
1818           'desc': '''Allows you to specify the behavior on startup.
1819
1820           If you choose 'Open New Tab Page' the New Tab Page will always be opened when you start <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1821
1822           If you choose 'Restore the last session', the URLs that were open last time <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> was closed will be reopened and the browsing session will be restored as it was left.
1823           Choosing this option disables some settings that rely on sessions or that perform actions on exit (such as Clear browsing data on exit or session-only cookies).
1824
1825           If you choose 'Open a list of URLs', the list of 'URLs to open on startup' will be opened when a user starts <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1826
1827           If you enable this setting, users cannot change or override it in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1828
1829           Disabling this setting is equivalent to leaving it not configured. The user will still be able to change it in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
1830         },
1831         {
1832           'name': 'RestoreOnStartupURLs',
1833           'type': 'list',
1834           'schema': {
1835             'type': 'array',
1836             'items': { 'type': 'string' },
1837           },
1838           'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
1839           'features': {
1840             'can_be_recommended': True,
1841             'dynamic_refresh': True,
1842             'per_profile': True,
1843           },
1844           'example_value': ['http://example.com', 'http://chromium.org'],
1845           'id': 38,
1846           'caption': '''URLs to open on startup''',
1847           'desc': '''If 'Open a list of URLs' is selected as the startup action, this allows you to specify the list of URLs that are opened. If left not set no URL will be opened on start up.
1848
1849           This policy only works if the 'RestoreOnStartup' policy is set to 'RestoreOnStartupIsURLs'.''',
1850         },
1851       ],
1852     },
1853     {
1854       'name': 'BlockThirdPartyCookies',
1855       'type': 'main',
1856       'schema': { 'type': 'boolean' },
1857       'supported_on': ['chrome.*:10-', 'chrome_os:11-'],
1858       'features': {
1859         'can_be_recommended': True,
1860         'dynamic_refresh': True,
1861         'per_profile': True,
1862       },
1863       'example_value': False,
1864       'id': 39,
1865       'caption': '''Block third party cookies''',
1866       'desc': '''Blocks third party cookies.
1867
1868       Enabling this setting prevents cookies from being set by web page elements that are not from the domain that is in the browser's address bar.
1869
1870       Disabling this setting allows cookies to be set by web page elements that are not from the domain that is in the browser's address bar and prevents users from changing this setting.
1871
1872       If this policy is left not set, third party cookies will be enabled but the user will be able to change that.''',
1873     },
1874     {
1875       # TODO(joaodasilva): Flag these policies with 'can_be_recommended'
1876       # after fixing http://crbug.com/106683
1877       'name': 'DefaultSearchProvider',
1878       'type': 'group',
1879       'caption': '''Default search provider''',
1880       'desc': '''Configures the default search provider. You can specify the default search provider that the user will use or choose to disable default search.''',
1881       'policies': [
1882         {
1883           'name': 'DefaultSearchProviderEnabled',
1884           'type': 'main',
1885           'schema': { 'type': 'boolean' },
1886           'supported_on': [
1887             'chrome.*:8-',
1888             'chrome_os:11-',
1889             'android:30-',
1890             'ios:34-',
1891           ],
1892           'features': {
1893             'dynamic_refresh': True,
1894             'per_profile': True,
1895           },
1896           'example_value': True,
1897           'id': 40,
1898           'caption': '''Enable the default search provider''',
1899           'desc': '''Enables the use of a default search provider.
1900
1901           If you enable this setting, a default search is performed when the user types text in the omnibox that is not a URL.
1902
1903           You can specify the default search provider to be used by setting the rest of the default search policies. If these are left empty, the user can choose the default provider.
1904
1905           If you disable this setting, no search is performed when the user enters non-URL text in the omnibox.
1906
1907           If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1908
1909           If this policy is left not set, the default search provider is enabled, and the user will be able to set the search provider list.''',
1910         },
1911         {
1912           'name': 'DefaultSearchProviderName',
1913           'type': 'string',
1914           'schema': { 'type': 'string' },
1915           'supported_on': [
1916             'chrome.*:8-',
1917             'chrome_os:11-',
1918             'android:30-',
1919             'ios:34-',
1920           ],
1921           'features': {
1922             'dynamic_refresh': True,
1923             'per_profile': True,
1924           },
1925           'example_value': 'My Intranet Search',
1926           'id': 41,
1927           'caption': '''Default search provider name''',
1928           'desc': '''Specifies the name of the default search provider. If left empty or not set, the host name specified by the search URL will be used.
1929
1930           This policy is only considered if the 'DefaultSearchProviderEnabled' policy is enabled.''',
1931         },
1932         {
1933           'name': 'DefaultSearchProviderKeyword',
1934           'type': 'string',
1935           'schema': { 'type': 'string' },
1936           'supported_on': [
1937             'chrome.*:8-',
1938             'chrome_os:11-',
1939             'android:30-',
1940             'ios:34-',
1941           ],
1942           'features': {
1943             'dynamic_refresh': True,
1944             'per_profile': True,
1945           },
1946           'example_value': 'mis',
1947           'id': 42,
1948           'caption': '''Default search provider keyword''',
1949           'desc': '''Specifies the keyword, which is the shortcut used in the omnibox to trigger the search for this provider.
1950
1951           This policy is optional. If not set, no keyword will activate the search provider.
1952
1953           This policy is only considered if the 'DefaultSearchProviderEnabled' policy is enabled.''',
1954         },
1955         {
1956           'name': 'DefaultSearchProviderSearchURL',
1957           'type': 'string',
1958           'schema': { 'type': 'string' },
1959           'supported_on': [
1960             'chrome.*:8-',
1961             'chrome_os:11-',
1962             'android:30-',
1963             'ios:34-',
1964           ],
1965           'features': {
1966             'dynamic_refresh': True,
1967             'per_profile': True,
1968           },
1969           'example_value': 'http://search.my.company/search?q={searchTerms}',
1970           'id': 43,
1971           'caption': '''Default search provider search URL''',
1972           'desc': '''Specifies the URL of the search engine used when doing a default search. The URL should contain the string '<ph name="SEARCH_TERM_MARKER">{searchTerms}</ph>', which will be replaced at query time by the terms the user is searching for.
1973
1974           This option must be set when the 'DefaultSearchProviderEnabled' policy is enabled and will only be respected if this is the case.''',
1975         },
1976         {
1977           'name': 'DefaultSearchProviderSuggestURL',
1978           'type': 'string',
1979           'schema': { 'type': 'string' },
1980           'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
1981           'features': {
1982             'dynamic_refresh': True,
1983             'per_profile': True,
1984           },
1985           'example_value': 'http://search.my.company/suggest?q={searchTerms}',
1986           'id': 44,
1987           'caption': '''Default search provider suggest URL''',
1988           'desc': '''Specifies the URL of the search engine used to provide search suggestions. The URL should contain the string '<ph name="SEARCH_TERM_MARKER">{searchTerms}</ph>', which will be replaced at query time by the text the user has entered so far.
1989
1990           This policy is optional. If not set, no suggest URL will be used.
1991
1992           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
1993         },
1994         {
1995           'name': 'DefaultSearchProviderInstantURL',
1996           'type': 'string',
1997           'schema': { 'type': 'string' },
1998           'supported_on': ['chrome.*:10-', 'chrome_os:11-', 'android:30-'],
1999           'features': {
2000             'dynamic_refresh': True,
2001             'per_profile': True,
2002           },
2003           'example_value': 'http://search.my.company/suggest?q={searchTerms}',
2004           'id': 45,
2005           'caption': '''Default search provider instant URL''',
2006           'desc': '''Specifies the URL of the search engine used to provide instant results. The URL should contain the string <ph name="SEARCH_TERM_MARKER">'{searchTerms}'</ph>, which will be replaced at query time by the text the user has entered so far.
2007
2008           This policy is optional. If not set, no instant search results will be provided.
2009
2010           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2011         },
2012         {
2013           'name': 'DefaultSearchProviderIconURL',
2014           'type': 'string',
2015           'schema': { 'type': 'string' },
2016           'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
2017           'features': {
2018             'dynamic_refresh': True,
2019             'per_profile': True,
2020           },
2021           'example_value': 'http://search.my.company/favicon.ico',
2022           'id': 46,
2023           'caption': '''Default search provider icon''',
2024           'desc': '''Specifies the favorite icon URL of the default search provider.
2025
2026           This policy is optional. If not set, no icon will be present for the search provider.
2027
2028           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2029         },
2030         {
2031           'name': 'DefaultSearchProviderEncodings',
2032           'type': 'list',
2033           'schema': {
2034             'type': 'array',
2035             'items': { 'type': 'string' },
2036           },
2037           'supported_on': ['chrome.*:8-', 'chrome_os:11-', 'android:30-'],
2038           'features': {
2039             'dynamic_refresh': True,
2040             'per_profile': True,
2041           },
2042           'example_value': ['UTF-8', 'UTF-16', 'GB2312', 'ISO-8859-1'],
2043           'id': 47,
2044           'caption': '''Default search provider encodings''',
2045           'desc': '''Specifies the character encodings supported by the search provider. Encodings are code page names like UTF-8, GB2312, and ISO-8859-1. They are tried in the order provided.
2046
2047           This policy is optional. If not set, the default will be used which is UTF-8.
2048
2049           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2050         },
2051         {
2052           'name': 'DefaultSearchProviderAlternateURLs',
2053           'type': 'list',
2054           'schema': {
2055             'type': 'array',
2056             'items': { 'type': 'string' },
2057           },
2058           'supported_on': ['chrome.*:24-', 'chrome_os:24-', 'android:30-'],
2059           'features': {
2060             'dynamic_refresh': True,
2061             'per_profile': True,
2062           },
2063           'example_value': ['http://search.my.company/suggest#q={searchTerms}', 'http://search.my.company/suggest/search#q={searchTerms}'],
2064           'id': 161,
2065           'caption': '''List of alternate URLs for the default search provider''',
2066           'desc': '''Specifies a list of alternate URLs that can be used to extract search terms from the search engine. The URLs should contain the string <ph name="SEARCH_TERM_MARKER">'{searchTerms}'</ph>, which will be used to extract the search terms.
2067
2068           This policy is optional. If not set, no alternate urls will be used to extract search terms.
2069
2070           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2071         },
2072         {
2073           'name': 'DefaultSearchProviderSearchTermsReplacementKey',
2074           'type': 'string',
2075           'schema': { 'type': 'string' },
2076           'supported_on': ['chrome.*:25-', 'chrome_os:25-', 'android:30-'],
2077           'features': {
2078             'dynamic_refresh': True,
2079             'per_profile': True,
2080           },
2081           'example_value': 'espv',
2082           'id': 171,
2083           'caption': '''Parameter controlling search term placement for the default search provider''',
2084           'desc': '''If this policy is set and a search URL suggested from the omnibox contains this parameter in the query string or in the fragment identifier, then the suggestion will show the search terms and search provider instead of the raw search URL.
2085
2086           This policy is optional. If not set, no search term replacement will be performed.
2087
2088           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2089         },
2090         {
2091           'name': 'DefaultSearchProviderImageURL',
2092           'type': 'string',
2093           'schema': { 'type': 'string' },
2094           'supported_on': ['chrome.*:29-', 'chrome_os:29-', 'android:30-'],
2095           'features': {
2096             'dynamic_refresh': True,
2097             'per_profile': True,
2098           },
2099           'example_value': 'http://search.my.company/searchbyimage/upload',
2100           'id': 229,
2101           'caption': '''Parameter providing search-by-image feature for the default search provider''',
2102           'desc': '''Specifies the URL of the search engine used to provide image search. Search requests will be sent using the GET method. If the DefaultSearchProviderImageURLPostParams policy is set then image search requests will use the POST method instead.
2103
2104           This policy is optional. If not set, no image search will be used.
2105
2106           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2107         },
2108         {
2109           'name': 'DefaultSearchProviderNewTabURL',
2110           'type': 'string',
2111           'schema': { 'type': 'string' },
2112           'supported_on': ['chrome.*:30-', 'chrome_os:30-', 'android:30-'],
2113           'features': {
2114             'dynamic_refresh': True,
2115             'per_profile': True,
2116           },
2117           'example_value': 'http://search.my.company/newtab',
2118           'id': 237,
2119           'caption': '''Default search provider new tab page URL''',
2120           'desc': '''Specifies the URL that a search engine uses to provide a new tab page.
2121
2122           This policy is optional. If not set, no new tab page will be provided.
2123
2124           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2125         },
2126         {
2127           'name': 'DefaultSearchProviderSearchURLPostParams',
2128           'type': 'string',
2129           'schema': { 'type': 'string' },
2130           'supported_on': ['chrome.*:29-', 'chrome_os:29-', 'android:30-'],
2131           'features': {
2132             'dynamic_refresh': True,
2133             'per_profile': True,
2134           },
2135           'example_value': 'q={searchTerms},ie=utf-8,oe=utf-8',
2136           'id': 230,
2137           'caption': '''Parameters for search URL which uses POST''',
2138           'desc': '''Specifies the parameters used when searching a URL with POST. It consists of comma-separated name/value pairs. If a value is a template parameter, like {searchTerms} in above example, it will be replaced with real search terms data.
2139
2140           This policy is optional. If not set, search request will be sent using the GET method.
2141
2142           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2143         },
2144         {
2145           'name': 'DefaultSearchProviderSuggestURLPostParams',
2146           'type': 'string',
2147           'schema': { 'type': 'string' },
2148           'supported_on': ['chrome.*:29-', 'chrome_os:29-', 'android:30-'],
2149           'features': {
2150             'dynamic_refresh': True,
2151             'per_profile': True,
2152           },
2153           'example_value': 'q={searchTerms},ie=utf-8,oe=utf-8',
2154           'id': 231,
2155           'caption': '''Parameters for suggest URL which uses POST''',
2156           'desc': '''Specifies the parameters used when doing suggestion search with POST. It consists of comma-separated name/value pairs. If a value is a template parameter, like {searchTerms} in above example, it will be replaced with real search terms data.
2157
2158           This policy is optional. If not set, suggest search request will be sent using the GET method.
2159
2160           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2161         },
2162         {
2163           'name': 'DefaultSearchProviderInstantURLPostParams',
2164           'type': 'string',
2165           'schema': { 'type': 'string' },
2166           'supported_on': ['chrome.*:29-', 'chrome_os:29-', 'android:30-'],
2167           'features': {
2168             'dynamic_refresh': True,
2169             'per_profile': True,
2170           },
2171           'example_value': 'q={searchTerms},ie=utf-8,oe=utf-8',
2172           'id': 232,
2173           'caption': '''Parameters for instant URL which uses POST''',
2174           'desc': '''Specifies the parameters used when doing instant search with POST. It consists of comma-separated name/value pairs. If a value is a template parameter, like {searchTerms} in above example, it will be replaced with real search terms data.
2175
2176           This policy is optional. If not set, instant search request will be sent using the GET method.
2177
2178           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2179         },
2180         {
2181           'name': 'DefaultSearchProviderImageURLPostParams',
2182           'type': 'string',
2183           'schema': { 'type': 'string' },
2184           'supported_on': ['chrome.*:29-', 'chrome_os:29-', 'android:30-'],
2185           'features': {
2186             'dynamic_refresh': True,
2187             'per_profile': True,
2188           },
2189           'example_value': 'content={imageThumbnail},url={imageURL},sbisrc={SearchSource}',
2190           'id': 233,
2191           'caption': '''Parameters for image URL which uses POST''',
2192           'desc': '''Specifies the parameters used when doing image search with POST. It consists of comma-separated name/value pairs. If a value is a template parameter, like {imageThumbnail} in above example, it will be replaced with real image thumbnail data.
2193
2194           This policy is optional. If not set, image search request will be sent using the GET method.
2195
2196           This policy is only respected if the 'DefaultSearchProviderEnabled' policy is enabled.''',
2197         },
2198       ],
2199     },
2200     {
2201       # TODO(joaodasilva): Flag these policies with 'can_be_recommended'
2202       # after fixing http://crbug.com/106682
2203       'name': 'ContentSettings',
2204       'type': 'group',
2205       'caption': '''Content Settings''',
2206       'desc': '''Content Settings allow you to specify how contents of a specific type (for example Cookies, Images or JavaScript) is handled.''',
2207       'policies': [
2208         {
2209           'name': 'DefaultCookiesSetting',
2210           'type': 'int-enum',
2211           'schema': {
2212             'type': 'integer',
2213             'enum': [ 1, 2, 4 ],
2214           },
2215           'items': [
2216             {
2217               'name': 'AllowCookies',
2218               'value': 1,
2219               'caption': '''Allow all sites to set local data''',
2220             },
2221             {
2222               'name': 'BlockCookies',
2223               'value': 2,
2224               'caption': '''Do not allow any site to set local data''',
2225             },
2226             {
2227               'name': 'SessionOnly',
2228               'value': 4,
2229               'caption': '''Keep cookies for the duration of the session''',
2230             },
2231           ],
2232           'supported_on': [
2233             'chrome.*:10-',
2234             'chrome_os:11-',
2235             'android:30-',
2236             'ios:34-',
2237           ],
2238           'features': {
2239             'dynamic_refresh': True,
2240             'per_profile': True,
2241           },
2242           'example_value': 1,
2243           'id': 48,
2244           'caption': '''Default cookies setting''',
2245           'desc': '''Allows you to set whether websites are allowed to set local data. Setting local data can be either allowed for all websites or denied for all websites.
2246
2247           If this policy is left not set, 'AllowCookies' will be used and the user will be able to change it.''',
2248         },
2249         {
2250           'name': 'DefaultImagesSetting',
2251           'type': 'int-enum',
2252           'schema': {
2253             'type': 'integer',
2254             'enum': [ 1, 2 ],
2255           },
2256           'items': [
2257             {
2258               'name': 'AllowImages',
2259               'value': 1,
2260               'caption': '''Allow all sites to show all images''',
2261             },
2262             {
2263               'name': 'BlockImages',
2264               'value': 2,
2265               'caption': '''Do not allow any site to show images''',
2266             },
2267           ],
2268           'supported_on': ['chrome.*:10-', 'chrome_os:11-', 'android:30-'],
2269           'features': {
2270             'dynamic_refresh': True,
2271             'per_profile': True,
2272           },
2273           'example_value': 1,
2274           'id': 49,
2275           'caption': '''Default images setting''',
2276           'desc': '''Allows you to set whether websites are allowed to display images. Displaying images can be either allowed for all websites or denied for all websites.
2277
2278           If this policy is left not set, 'AllowImages' will be used and the user will be able to change it.''',
2279         },
2280         {
2281           'name': 'DefaultJavaScriptSetting',
2282           'type': 'int-enum',
2283           'schema': {
2284             'type': 'integer',
2285             'enum': [ 1, 2 ],
2286           },
2287           'items': [
2288             {
2289               'name': 'AllowJavaScript',
2290               'value': 1,
2291               'caption': '''Allow all sites to run JavaScript''',
2292             },
2293             {
2294               'name': 'BlockJavaScript',
2295               'value': 2,
2296               'caption': '''Do not allow any site to run JavaScript''',
2297             },
2298           ],
2299           'supported_on': ['chrome.*:10-', 'chrome_os:11-', 'android:30-'],
2300           'features': {
2301             'dynamic_refresh': True,
2302             'per_profile': True,
2303           },
2304           'example_value': 1,
2305           'id': 50,
2306           'caption': '''Default JavaScript setting''',
2307           'desc': '''Allows you to set whether websites are allowed to run JavaScript. Running JavaScript can be either allowed for all websites or denied for all websites.
2308
2309           If this policy is left not set, 'AllowJavaScript' will be used and the user will be able to change it.''',
2310         },
2311         {
2312           'name': 'DefaultPluginsSetting',
2313           'type': 'int-enum',
2314           'schema': {
2315             'type': 'integer',
2316             'enum': [ 1, 2, 3 ],
2317           },
2318           'items': [
2319             {
2320               'name': 'AllowPlugins',
2321               'value': 1,
2322               'caption': '''Allow all sites to automatically run plugins''',
2323             },
2324             {
2325               'name': 'BlockPlugins',
2326               'value': 2,
2327               'caption': '''Block all plugins''',
2328             },
2329             {
2330               'name': 'ClickToPlay',
2331               'value': 3,
2332               'caption': '''Click to play''',
2333             },
2334           ],
2335           'supported_on': ['chrome.*:10-', 'chrome_os:11-'],
2336           'features': {
2337             'dynamic_refresh': True,
2338             'per_profile': True,
2339           },
2340           'example_value': 1,
2341           'id': 51,
2342           'caption': '''Default plugins setting''',
2343           'desc': '''Allows you to set whether websites are allowed to automatically run plugins. Automatically running plugins can be either allowed for all websites or denied for all websites.
2344
2345           Click to play allows plugins to run but the user must click them to start their execution.
2346
2347           If this policy is left not set, 'AllowPlugins' will be used and the user will be able to change it.''',
2348         },
2349         {
2350           'name': 'DefaultPopupsSetting',
2351           'type': 'int-enum',
2352           'schema': {
2353             'type': 'integer',
2354             'enum': [ 1, 2 ],
2355           },
2356           'items': [
2357             {
2358               'name': 'AllowPopups',
2359               'value': 1,
2360               'caption': '''Allow all sites to show pop-ups''',
2361             },
2362             {
2363               'name': 'BlockPopups',
2364               'value': 2,
2365               'caption': '''Do not allow any site to show popups''',
2366             },
2367           ],
2368           'supported_on': [
2369             'chrome.*:10-',
2370             'chrome_os:11-',
2371             'ios:34-',
2372             'android:33-',
2373           ],
2374           'features': {
2375             'dynamic_refresh': True,
2376             'per_profile': True,
2377           },
2378           'example_value': 1,
2379           'id': 52,
2380           'caption': '''Default popups setting''',
2381           'desc': '''Allows you to set whether websites are allowed to show pop-ups. Showing popups can be either allowed for all websites or denied for all websites.
2382
2383           If this policy is left not set, 'BlockPopups' will be used and the user will be able to change it.''',
2384         },
2385         {
2386           'name': 'DefaultNotificationsSetting',
2387           'type': 'int-enum',
2388           'schema': {
2389             'type': 'integer',
2390             'enum': [ 1, 2, 3 ],
2391           },
2392           'items': [
2393             {
2394               'name': 'AllowNotifications',
2395               'value': 1,
2396               'caption': '''Allow sites to show desktop notifications''',
2397             },
2398             {
2399               'name': 'BlockNotifications',
2400               'value': 2,
2401               'caption': '''Do not allow any site to show desktop notifications''',
2402             },
2403             {
2404               'name': 'AskNotifications',
2405               'value': 3,
2406               'caption': '''Ask every time a site wants to show desktop notifications''',
2407             },
2408           ],
2409           'supported_on': ['chrome.*:10-', 'chrome_os:11-'],
2410           'features': {
2411             'dynamic_refresh': True,
2412             'per_profile': True,
2413           },
2414           'example_value': 2,
2415           'id': 53,
2416           'caption': '''Default notification setting''',
2417           'desc': '''Allows you to set whether websites are allowed to display desktop notifications. Displaying desktop notifications can be allowed by default, denied by default or the user can be asked every time a website wants to show desktop notifications.
2418
2419           If this policy is left not set, 'AskNotifications' will be used and the user will be able to change it.''',
2420         },
2421         {
2422           'name': 'DefaultGeolocationSetting',
2423           'type': 'int-enum',
2424           'schema': {
2425             'type': 'integer',
2426             'enum': [ 1, 2, 3 ],
2427           },
2428           'items': [
2429             {
2430               'name': 'AllowGeolocation',
2431               'value': 1,
2432               'caption': '''Allow sites to track the users' physical location''',
2433             },
2434             {
2435               'name': 'BlockGeolocation',
2436               'value': 2,
2437               'caption': '''Do not allow any site to track the users' physical location''',
2438             },
2439             {
2440               'name': 'AskGeolocation',
2441               'value': 3,
2442               'caption': '''Ask whenever a site wants to track the users' physical location''',
2443             },
2444           ],
2445           'supported_on': ['chrome.*:10-', 'chrome_os:11-', 'android:30-'],
2446           'features': {
2447             'dynamic_refresh': True,
2448             'per_profile': True,
2449           },
2450           'example_value': 0,
2451           'id': 54,
2452           'caption': '''Default geolocation setting''',
2453           'desc': '''Allows you to set whether websites are allowed to track the users' physical location. Tracking the users' physical location can be allowed by default, denied by default or the user can be asked every time a website requests the physical location.
2454
2455           If this policy is left not set, 'AskGeolocation' will be used and the user will be able to change it.''',
2456         },
2457         {
2458           'name': 'DefaultMediaStreamSetting',
2459           'type': 'int-enum',
2460           'schema': {
2461             'type': 'integer',
2462             'enum': [ 2, 3 ],
2463           },
2464           'items': [
2465             {
2466               'name': 'BlockAccess',
2467               'value': 2,
2468               'caption': '''Do not allow any site to access the camera and microphone''',
2469             },
2470             {
2471               'name': 'PromptOnAccess',
2472               'value': 3,
2473               'caption': '''Ask every time a site wants to access the camera and/or microphone''',
2474             },
2475           ],
2476           'supported_on': ['chrome.*:22-', 'chrome_os:22-'],
2477           'features': {
2478             'dynamic_refresh': True,
2479             'per_profile': True,
2480           },
2481           'deprecated': True,
2482           'example_value': 2,
2483           'id': 149,
2484           'caption': '''Default mediastream setting''',
2485           'desc': '''Allows you to set whether websites are allowed to get access to media capture devices. Access to media capture devices can be allowed by default, or the user can be asked every time a website wants to get access to media capture devices.
2486
2487           If this policy is left not set, 'PromptOnAccess' will be used and the user will be able to change it.''',
2488         },
2489         {
2490           'name': 'AutoSelectCertificateForUrls',
2491           'type': 'list',
2492           'schema': {
2493             'type': 'array',
2494             'items': { 'type': 'string' },
2495           },
2496           'supported_on': ['chrome.*:15-', 'chrome_os:15-'],
2497           'features': {
2498             'dynamic_refresh': True,
2499             'per_profile': True,
2500           },
2501           'example_value': ["{\\\"pattern\\\":\\\"https://www.example.com\\\",\\\"filter\\\":{\\\"ISSUER\\\":{\\\"CN\\\":\\\"certificate issuer name\\\"}}}"],
2502           'id': 102,
2503           'caption': '''Automatically select client certificates for these sites''',
2504           'desc': '''Allows you to specify a list of url patterns that specify sites for which <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> should automatically select a client certificates, if the site requests a certificate.
2505
2506           If this policy is left not set no auto-selection will be done for any site.''',
2507         },
2508         {
2509           'name': 'CookiesAllowedForUrls',
2510           'type': 'list',
2511           'schema': {
2512             'type': 'array',
2513             'items': { 'type': 'string' },
2514           },
2515           'supported_on': [
2516             'chrome.*:11-',
2517             'chrome_os:11-',
2518             'android:30-',
2519             'ios:34-',
2520           ],
2521           'features': {
2522             'dynamic_refresh': True,
2523             'per_profile': True,
2524           },
2525           'example_value': ['http://www.example.com', '[*.]example.edu'],
2526           'id': 77,
2527           'caption': '''Allow cookies on these sites''',
2528           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to set cookies.
2529
2530           If this policy is left not set the global default value will be used for all sites either from the 'DefaultCookiesSetting' policy if it is set, or the user's personal configuration otherwise.''',
2531         },
2532         {
2533           'name': 'CookiesBlockedForUrls',
2534           'type': 'list',
2535           'schema': {
2536             'type': 'array',
2537             'items': { 'type': 'string' },
2538           },
2539           'supported_on': [
2540             'chrome.*:11-',
2541             'chrome_os:11-',
2542             'android:30-',
2543             'ios:34-',
2544           ],
2545           'features': {
2546             'dynamic_refresh': True,
2547             'per_profile': True,
2548           },
2549           'example_value': ['http://www.example.com', '[*.]example.edu'],
2550           'id': 67,
2551           'caption': '''Block cookies on these sites''',
2552           'desc': '''Allows you to set a list of url patterns that specify sites which are not allowed to set cookies.
2553
2554           If this policy is left not set the global default value will be used for all sites either from the 'DefaultCookiesSetting' policy if it is set, or the user's personal configuration otherwise.''',
2555         },
2556         {
2557           'name': 'CookiesSessionOnlyForUrls',
2558           'type': 'list',
2559           'schema': {
2560             'type': 'array',
2561             'items': { 'type': 'string' },
2562           },
2563           'supported_on': [
2564             'chrome.*:11-',
2565             'chrome_os:11-',
2566             'android:30-',
2567             'ios:34-',
2568           ],
2569           'features': {
2570             'dynamic_refresh': True,
2571             'per_profile': True,
2572           },
2573           'example_value': ['http://www.example.com', '[*.]example.edu'],
2574           'id': 68,
2575           'caption': '''Allow session only cookies on these sites''',
2576           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to set session only cookies.
2577
2578           If this policy is left not set the global default value will be used for all sites either from the 'DefaultCookiesSetting' policy if it is set, or the user's personal configuration otherwise.
2579
2580           If the "RestoreOnStartup" policy is set to restore URLs from previous sessions this policy will not be respected and cookies will be stored permanently for those sites.''',
2581         },
2582         {
2583           'name': 'ImagesAllowedForUrls',
2584           'type': 'list',
2585           'schema': {
2586             'type': 'array',
2587             'items': { 'type': 'string' },
2588           },
2589           'supported_on': ['chrome.*:11-', 'chrome_os:11-', 'android:30-'],
2590           'features': {
2591             'dynamic_refresh': True,
2592             'per_profile': True,
2593           },
2594           'example_value': ['http://www.example.com', '[*.]example.edu'],
2595           'id': 69,
2596           'caption': '''Allow images on these sites''',
2597           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to display images.
2598
2599           If this policy is left not set the global default value will be used for all sites either from the 'DefaultImagesSetting' policy if it is set, or the user's personal configuration otherwise.''',
2600         },
2601         {
2602           'name': 'ImagesBlockedForUrls',
2603           'type': 'list',
2604           'schema': {
2605             'type': 'array',
2606             'items': { 'type': 'string' },
2607           },
2608           'supported_on': ['chrome.*:11-', 'chrome_os:11-', 'android:30-'],
2609           'features': {
2610             'dynamic_refresh': True,
2611             'per_profile': True,
2612           },
2613           'example_value': ['http://www.example.com', '[*.]example.edu'],
2614           'id': 70,
2615           'caption': '''Block images on these sites''',
2616           'desc': '''Allows you to set a list of url patterns that specify sites which are not allowed to display images.
2617
2618           If this policy is left not set the global default value will be used for all sites either from the 'DefaultImagesSetting' policy if it is set, or the user's personal configuration otherwise.''',
2619         },
2620         {
2621           'name': 'JavaScriptAllowedForUrls',
2622           'type': 'list',
2623           'schema': {
2624             'type': 'array',
2625             'items': { 'type': 'string' },
2626           },
2627           'supported_on': ['chrome.*:11-', 'chrome_os:11-', 'android:30-'],
2628           'features': {
2629             'dynamic_refresh': True,
2630             'per_profile': True,
2631           },
2632           'example_value': ['http://www.example.com', '[*.]example.edu'],
2633           'id': 71,
2634           'caption': '''Allow JavaScript on these sites''',
2635           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to run JavaScript.
2636
2637           If this policy is left not set the global default value will be used for all sites either from the 'DefaultJavaScriptSetting' policy if it is set, or the user's personal configuration otherwise.''',
2638         },
2639         {
2640           'name': 'JavaScriptBlockedForUrls',
2641           'type': 'list',
2642           'schema': {
2643             'type': 'array',
2644             'items': { 'type': 'string' },
2645           },
2646           'supported_on': ['chrome.*:11-', 'chrome_os:11-', 'android:30-'],
2647           'features': {
2648             'dynamic_refresh': True,
2649             'per_profile': True,
2650           },
2651           'example_value': ['http://www.example.com', '[*.]example.edu'],
2652           'id': 72,
2653           'caption': '''Block JavaScript on these sites''',
2654           'desc': '''Allows you to set a list of url patterns that specify sites which are not allowed to run JavaScript.
2655
2656           If this policy is left not set the global default value will be used for all sites either from the 'DefaultJavaScriptSetting' policy if it is set, or the user's personal configuration otherwise.''',
2657         },
2658         {
2659           'name': 'PluginsAllowedForUrls',
2660           'type': 'list',
2661           'schema': {
2662             'type': 'array',
2663             'items': { 'type': 'string' },
2664           },
2665           'supported_on': ['chrome.*:11-', 'chrome_os:11-'],
2666           'features': {
2667             'dynamic_refresh': True,
2668             'per_profile': True,
2669           },
2670           'example_value': ['http://www.example.com', '[*.]example.edu'],
2671           'id': 73,
2672           'caption': '''Allow plugins on these sites''',
2673           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to run plugins.
2674
2675           If this policy is left not set the global default value will be used for all sites either from the 'DefaultPluginsSetting' policy if it is set, or the user's personal configuration otherwise.''',
2676         },
2677         {
2678           'name': 'PluginsBlockedForUrls',
2679           'type': 'list',
2680           'schema': {
2681             'type': 'array',
2682             'items': { 'type': 'string' },
2683           },
2684           'supported_on': ['chrome.*:11-', 'chrome_os:11-'],
2685           'features': {
2686             'dynamic_refresh': True,
2687             'per_profile': True,
2688           },
2689           'example_value': ['http://www.example.com', '[*.]example.edu'],
2690           'id': 74,
2691           'caption': '''Block plugins on these sites''',
2692           'desc': '''Allows you to set a list of url patterns that specify sites which are not allowed to run plugins.
2693
2694           If this policy is left not set the global default value will be used for all sites either from the 'DefaultPluginsSetting' policy if it is set, or the user's personal configuration otherwise.''',
2695         },
2696         {
2697           'name': 'PopupsAllowedForUrls',
2698           'type': 'list',
2699           'schema': {
2700             'type': 'array',
2701             'items': { 'type': 'string' },
2702           },
2703           'supported_on': [
2704             'chrome.*:11-',
2705             'chrome_os:11-',
2706             'ios:34-',
2707             'android:34-',
2708           ],
2709           'features': {
2710             'dynamic_refresh': True,
2711             'per_profile': True,
2712           },
2713           'example_value': ['http://www.example.com', '[*.]example.edu'],
2714           'id': 75,
2715           'caption': '''Allow popups on these sites''',
2716           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to open popups.
2717
2718           If this policy is left not set the global default value will be used for all sites either from the 'DefaultPopupsSetting' policy if it is set, or the user's personal configuration otherwise.''',
2719         },
2720         {
2721           'name': 'RegisteredProtocolHandlers',
2722           'type': 'dict',
2723           'schema': {
2724             'type': 'array',
2725             'items': {
2726               'type': 'object',
2727               'properties': {
2728                 'default': {
2729                   'description': 'A boolean flag indicating if the protocol handler should be set as the default.',
2730                   'type': 'boolean'
2731                 },
2732                 'protocol': {
2733                   'description': 'The protocol for the protocol handler.',
2734                   'type': 'string'
2735                 },
2736                 'url': {
2737                   'description': 'The URL of the protocol handler.',
2738                   'type': 'string'
2739                 }
2740               },
2741               'required': ['protocol', 'url']
2742             }
2743           },
2744           'supported_on': ['chrome.*:37-', 'chrome_os:37-'],
2745           'features': {
2746             'dynamic_refresh': False,
2747             'per_profile': True,
2748             'can_be_recommended': True,
2749             'can_be_mandatory' : False,
2750           },
2751           'example_value': [{'protocol': 'mailto', 'url': 'https://mail.google.com/mail/?extsrc=mailto&url=%s', 'default': 'true'}],
2752           'id': 268,
2753           'caption': '''Register protocol handlers''',
2754           'desc': '''Allows you to register a list of protocol handlers. This can only be a recommended policy. The property |protocol| should be set to the scheme such as 'mailto' and the property |url| should be set to the URL pattern of the application that handles the scheme. The pattern can include a '%s', which if present will be replaced by the handled URL.
2755
2756           The protocol handlers registered by policy are merged with the ones registered by the user and both are available for use. The user can override the protocol handlers installed by policy by installing a new default handler, but cannot remove a protocol handler registered by policy.''',
2757         },
2758         {
2759           'name': 'PopupsBlockedForUrls',
2760           'type': 'list',
2761           'schema': {
2762             'type': 'array',
2763             'items': { 'type': 'string' },
2764           },
2765           'supported_on': [
2766             'chrome.*:11-',
2767             'chrome_os:11-',
2768             'ios:34-',
2769             'android:34-',
2770           ],
2771           'features': {
2772             'dynamic_refresh': True,
2773             'per_profile': True,
2774           },
2775           'example_value': ['http://www.example.com', '[*.]example.edu'],
2776           'id': 76,
2777           'caption': '''Block popups on these sites''',
2778           'desc': '''Allows you to set a list of url patterns that specify sites which are not allowed to open popups.
2779
2780           If this policy is left not set the global default value will be used for all sites either from the 'DefaultPopupsSetting' policy if it is set, or the user's personal configuration otherwise.''',
2781         },
2782         {
2783           'name': 'NotificationsAllowedForUrls',
2784           'type': 'list',
2785           'schema': {
2786             'type': 'array',
2787             'items': { 'type': 'string' },
2788           },
2789           'supported_on': ['chrome.*:16-', 'chrome_os:16-'],
2790           'features': {
2791             'dynamic_refresh': True,
2792             'per_profile': True,
2793           },
2794           'example_value': ['http://www.example.com', '[*.]example.edu'],
2795           'id': 105,
2796           'caption': '''Allow notifications on these sites''',
2797           'desc': '''Allows you to set a list of url patterns that specify sites which are allowed to display notifications.
2798
2799           If this policy is left not set the global default value will be used for all sites either from the 'DefaultNotificationsSetting' policy if it is set, or the user's personal configuration otherwise.''',
2800         },
2801         {
2802           'name': 'NotificationsBlockedForUrls',
2803           'type': 'list',
2804           'schema': {
2805             'type': 'array',
2806             'items': { 'type': 'string' },
2807           },
2808           'supported_on': ['chrome.*:16-', 'chrome_os:16-'],
2809           'features': {
2810             'dynamic_refresh': True,
2811             'per_profile': True,
2812           },
2813           'example_value': ['http://www.example.com', '[*.]example.edu'],
2814           'id': 106,
2815           'caption': '''Block notifications on these sites''',
2816           'desc': '''Allows you to set a list of url patterns that specify sites which are not allowed to display notifications.
2817
2818           If this policy is left not set the global default value will be used for all sites either from the 'DefaultNotificationsSetting' policy if it is set, or the user's personal configuration otherwise.''',
2819         },
2820       ],
2821     },
2822     {
2823       'name': 'NativeMessaging',
2824       'type': 'group',
2825       'caption': '''Native Messaging''',
2826       'desc': '''Configures policies for Native Messaging. Blacklisted native messaging hosts won't be allowed unless they are whitelisted.''',
2827       'policies': [
2828         {
2829           'name': 'NativeMessagingBlacklist',
2830           'type': 'list',
2831           'schema': {
2832             'type': 'array',
2833             'items': { 'type': 'string' },
2834           },
2835           'supported_on': ['chrome.*:34-'],
2836           'features': {
2837             'dynamic_refresh': True,
2838             'per_profile': True,
2839           },
2840           'example_value': [
2841             'com.native.messaging.host.name1',
2842             'com.native.messaging.host.name2',
2843           ],
2844           'id': 251,
2845           'caption': '''Configure native messaging blacklist''',
2846           'desc': '''Allows you to specify which native messaging hosts that should not be loaded.
2847
2848           A blacklist value of '*' means all native messaging hosts are blacklisted unless they are explicitly listed in the whitelist.
2849
2850           If this policy is left not set <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will load all installed native messaging hosts.''',
2851           'label': '''Names of the forbidden native messaging hosts (or * for all)''',
2852         },
2853         {
2854           'name': 'NativeMessagingWhitelist',
2855           'type': 'list',
2856           'schema': {
2857             'type': 'array',
2858             'items': { 'type': 'string' },
2859           },
2860           'supported_on': ['chrome.*:34-'],
2861           'features': {
2862             'dynamic_refresh': True,
2863             'per_profile': True,
2864           },
2865           'example_value': [
2866             'com.native.messaging.host.name1',
2867             'com.native.messaging.host.name2',
2868           ],
2869           'id': 252,
2870           'caption': '''Configure native messaging whitelist''',
2871           'desc': '''Allows you to specify which native messaging hosts are not subject to the blacklist.
2872
2873           A blacklist value of * means all native messaging hosts are blacklisted and only native messaging hosts listed in the whitelist will be loaded.
2874
2875           By default, all native messaging hosts are whitelisted, but if all native messaging hosts have been blacklisted by policy, the whitelist can be used to override that policy.''',
2876           'label': '''Names of the native messaging hosts to exempt from the blacklist''',
2877         },
2878         {
2879           'name': 'NativeMessagingUserLevelHosts',
2880           'type': 'main',
2881           'schema': { 'type': 'boolean' },
2882           'supported_on': ['chrome.*:34-'],
2883           'features': {
2884             'dynamic_refresh': True,
2885             'per_profile': True,
2886           },
2887           'example_value': False,
2888           'id': 253,
2889           'caption': '''Allow user-level Native Messaging hosts (installed without admin permissions).''',
2890           'desc': '''Enables user-level installation of Native Messaging hosts.
2891
2892           If this setting is enabled then <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> allows
2893           usage of Native Messaging hosts installed on user level.
2894
2895           If this setting is disabled then <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will
2896           only use Native Messaging hosts installed on system level.
2897
2898           If this setting is left not set <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>
2899           will allow usage of user-level Native Messaging hosts.''',
2900         },
2901       ],
2902     },
2903     {
2904       'name': 'Disable3DAPIs',
2905       'type': 'main',
2906       'schema': { 'type': 'boolean' },
2907       'supported_on': ['chrome.*:9-', 'chrome_os:11-'],
2908       'features': {
2909         'dynamic_refresh': True,
2910         'per_profile': True,
2911       },
2912       'example_value': False,
2913       'id': 55,
2914       'caption': '''Disable support for 3D graphics APIs''',
2915       'desc': '''Disable support for 3D graphics APIs.
2916
2917       Enabling this setting prevents web pages from accessing the graphics processing unit (GPU). Specifically, web pages can not access the WebGL API and plugins can not use the Pepper 3D API.
2918
2919       Disabling this setting or leaving it not set potentially allows web pages to use the WebGL API and plugins to use the Pepper 3D API. The default settings of the browser may still require command line arguments to be passed in order to use these APIs.''',
2920     },
2921     {
2922       'name': 'PolicyRefreshRate',
2923       'type': 'int',
2924       'schema': { 'type': 'integer' },
2925       'supported_on': ['chrome_os:11-'],
2926       'features': {
2927         'dynamic_refresh': True,
2928         'per_profile': True,
2929       },
2930       'example_value': 3600000,
2931       'id': 56,
2932       'caption': '''Refresh rate for user policy''',
2933       'desc': '''Specifies the period in milliseconds at which the device management service is queried for user policy information.
2934
2935       Setting this policy overrides the default value of 3 hours. Valid values for this policy are in the range from 1800000 (30 minutes) to 86400000 (1 day). Any values not in this range will be clamped to the respective boundary.
2936
2937       Leaving this policy not set will make <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> use the default value of 3 hours.''',
2938     },
2939     {
2940       'name': 'MaxInvalidationFetchDelay',
2941       'type': 'int',
2942       'schema': { 'type': 'integer' },
2943       'supported_on': ['chrome.*:30-', 'chrome_os:30-'],
2944       'features': {
2945         'dynamic_refresh': True,
2946         'per_profile': True,
2947       },
2948       'example_value': 10000,
2949       'id': 228,
2950       'caption': '''Maximum fetch delay after a policy invalidation''',
2951       'desc': '''Specifies the maximum delay in milliseconds between receiving a policy invalidation and fetching the new policy from the device management service.
2952
2953       Setting this policy overrides the default value of 5000 milliseconds. Valid values for this policy are in the range from 1000 (1 second) to 300000 (5 minutes). Any values not in this range will be clamped to the respective boundary.
2954
2955       Leaving this policy not set will make <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> use the default value of 5000 milliseconds.''',
2956     },
2957     {
2958       'name': 'ChromeFrameRendererSettings',
2959       'type': 'group',
2960       'caption': '''Default HTML renderer for <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>''',
2961       'desc': '''Allows you to configure the default HTML renderer when <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> is installed.
2962       The default setting is to allow the host browser do the rendering, but you
2963       can optionally override this and have <ph name="PRODUCT_FRAME_NAME">$3<ex>
2964       Google Chrome Frame</ex></ph> render HTML pages by default.''',
2965       'policies': [
2966         {
2967           'name': 'ChromeFrameRendererSettings',
2968           'type': 'int-enum',
2969           'schema': {
2970             'type': 'integer',
2971             'enum': [ 0, 1 ],
2972           },
2973           'items': [
2974             {
2975               'name': 'RenderInHost',
2976               'value': 0,
2977               'caption': '''Use the host browser by default''',
2978             },
2979             {
2980               'name': 'RenderInChromeFrame',
2981               'value': 1,
2982               'caption': '''Use <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> by default''',
2983             },
2984           ],
2985           'supported_on': ['chrome_frame:8-32'],
2986           'features': {
2987             'dynamic_refresh': False,
2988           },
2989           'example_value': 1,
2990           'id': 57,
2991           'caption': '''Default HTML renderer for <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>''',
2992           'desc': '''Allows you to configure the default HTML renderer when <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> is installed.
2993           The default setting used when this policy is left not set is to allow the host browser do the rendering, but you can optionally override this and have <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> render HTML pages by default.''',
2994         },
2995         {
2996           'name': 'RenderInChromeFrameList',
2997           'type': 'list',
2998           'schema': {
2999             'type': 'array',
3000             'items': { 'type': 'string' },
3001           },
3002           'supported_on': ['chrome_frame:8-32'],
3003           'features': {
3004             'dynamic_refresh': False,
3005           },
3006           'example_value': ['http://www.example.com', 'http://www.example.edu'],
3007           'id': 58,
3008           'caption': '''Always render the following URL patterns in <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>''',
3009           'desc': '''Customize the list of URL patterns that should always be rendered by <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>.
3010
3011           If this policy is not set the default renderer will be used for all sites as specified by the 'ChromeFrameRendererSettings' policy.
3012
3013           For example patterns see http://www.chromium.org/developers/how-tos/chrome-frame-getting-started.''',
3014         },
3015         {
3016           'name': 'RenderInHostList',
3017           'type': 'list',
3018           'schema': {
3019             'type': 'array',
3020             'items': { 'type': 'string' },
3021           },
3022           'supported_on': ['chrome_frame:8-32'],
3023           'features': {
3024             'dynamic_refresh': False,
3025           },
3026           'example_value': ['http://www.example.com', 'http://www.example.edu'],
3027           'id': 59,
3028           'caption': '''Always render the following URL patterns in the host browser''',
3029           'desc': '''Customize the list of URL patterns that should always be rendered by the host browser.
3030
3031           If this policy is not set the default renderer will be used for all sites as specified by the 'ChromeFrameRendererSettings' policy.
3032
3033           For example patterns see http://www.chromium.org/developers/how-tos/chrome-frame-getting-started.''',
3034         },
3035         {
3036           'name': 'AdditionalLaunchParameters',
3037           'type': 'string',
3038           'schema': { 'type': 'string' },
3039           'supported_on': ['chrome_frame:19-32'],
3040           'features': {
3041             'dynamic_refresh': False,
3042           },
3043           'example_value': '--enable-media-stream --enable-media-source',
3044           'id': 141,
3045           'caption': '''Additional command line parameters for <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>''',
3046           'desc': '''Allows you to specify additional parameters that are used when <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> launches <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
3047
3048           If this policy is not set the default command line will be used.''',
3049         },
3050         {
3051           'name': 'SkipMetadataCheck',
3052           'type': 'main',
3053           'schema': { 'type': 'boolean' },
3054           'supported_on': ['chrome_frame:31-32'],
3055           'features': {
3056             'dynamic_refresh': False,
3057           },
3058           'example_value': False,
3059           'id': 238,
3060           'caption': '''Skip the meta tag check in <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>''',
3061           'desc': '''Normally pages with X-UA-Compatible set to chrome=1 will be rendered in <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> regardless of the 'ChromeFrameRendererSettings' policy.
3062
3063           If you enable this setting, pages will not be scanned for meta tags.
3064
3065           If you disable this setting, pages will be scanned for meta tags.
3066
3067           If this policy is not set, pages will be scanned for meta tags.'''
3068         },
3069       ],
3070     },
3071     {
3072       'name': 'ChromeFrameContentTypes',
3073       'type': 'group',
3074       'caption': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> to handle the following content types''',
3075       'desc': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> to handle the following content types.''',
3076       'policies': [
3077         {
3078           'name': 'ChromeFrameContentTypes',
3079           'type': 'list',
3080           'schema': {
3081             'type': 'array',
3082             'items': { 'type': 'string' },
3083           },
3084           'supported_on': ['chrome_frame:8-32'],
3085           'features': {
3086             'dynamic_refresh': False,
3087           },
3088           'example_value': ['text/xml', 'application/xml'],
3089           'id': 60,
3090           'caption': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> to handle the listed content types''',
3091           'desc': '''Allow <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> to handle the listed content types.
3092
3093           If this policy is not set the default renderer will be used for all sites as specified by the 'ChromeFrameRendererSettings' policy.''',
3094         },
3095       ],
3096     },
3097     {
3098       'name': 'ChromeOsLockOnIdleSuspend',
3099       'type': 'main',
3100       'schema': { 'type': 'boolean' },
3101       'supported_on': ['chrome_os:9-'],
3102       'features': {
3103         'can_be_recommended': True,
3104         'dynamic_refresh': True,
3105         'per_profile': True,
3106       },
3107       'example_value': True,
3108       'id': 61,
3109       'caption': '''Enable lock when the device become idle or suspended''',
3110       'desc': '''Enable lock when <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> devices become idle or suspended.
3111
3112       If you enable this setting, users will be asked for a password to unlock the device from sleep.
3113
3114       If you disable this setting, users will not be asked for a password to unlock the device from sleep.
3115
3116       If you enable or disable this setting, users cannot change or override it.
3117
3118       If the policy is left not set the user can choose whether he wants to be asked for password to unlock the device or not.''',
3119     },
3120     {
3121       'name': 'ChromeOsMultiProfileUserBehavior',
3122       'type': 'string-enum',
3123       'schema': {
3124         'type': 'string',
3125         'enum': [
3126           'unrestricted',
3127           'primary-only',
3128           'not-allowed',
3129         ],
3130       },
3131       'items': [
3132         {
3133           'name': 'MultiProfileUserBehaviorUnrestricted',
3134           'value': 'unrestricted',
3135           'caption': '''Allow enterprise user to be both primary and secondary  (Default behavior for non-managed users)''',
3136         },
3137         {
3138           'name': 'MultiProfileUserBehaviorMustBePrimary',
3139           'value': 'primary-only',
3140           'caption': '''Allow enterprise user to be primary multiprofile user only (Default behavior for enterprise-managed users)''',
3141         },
3142         {
3143           'name': 'MultiProfileUserBehaviorNotAllowed',
3144           'value': 'not-allowed',
3145           'caption': '''Do not allow enterprise user to be part of multiprofile (primary or secondary)''',
3146         },
3147       ],
3148       'supported_on': ['chrome_os:31-'],
3149       'features': {
3150         'dynamic_refresh': True,
3151         'per_profile': True,
3152       },
3153       'example_value': 'unrestricted',
3154       'default_for_enterprise_users': 'primary-only',
3155       'id': 244,
3156       'caption': '''Control the user behavior in a multiprofile session''',
3157       'desc': '''Control the user behavior in a multiprofile session on <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> devices.
3158
3159       If this policy is set to 'MultiProfileUserBehaviorUnrestricted', the user can be either primary or secondary user in a multiprofile session.
3160
3161       If this policy is set to 'MultiProfileUserBehaviorMustBePrimary', the user can only be the primary user in a multiprofile session.
3162
3163       If this policy is set to 'MultiProfileUserBehaviorNotAllowed', the user cannot be part of a multiprofile session.
3164
3165       If you set this setting, users cannot change or override it.
3166
3167       If the setting is changed while the user is signed into a multiprofile session, all users in the session will be checked against their corresponding settings. The session will be closed if any one of the users is no longer allowed to be in the session.
3168
3169       If the policy is left not set, the default value 'MultiProfileUserBehaviorMustBePrimary' applies for enterprise-managed users and 'MultiProfileUserBehaviorUnrestricted' will be used for non-managed users.''',
3170     },
3171     {
3172       'name': 'InstantEnabled',
3173       'type': 'main',
3174       'schema': { 'type': 'boolean' },
3175       'supported_on': ['chrome.*:11-28', 'chrome_os:11-28'],
3176       'deprecated': True,
3177       'features': {
3178         'can_be_recommended': True,
3179         'dynamic_refresh': True,
3180         'per_profile': True,
3181       },
3182       'example_value': True,
3183       'id': 62,
3184       'caption': '''Enable Instant''',
3185       'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>'s Instant feature and prevents users from changing this setting.
3186
3187       If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> Instant is enabled.
3188
3189       If you disable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> Instant is disabled.
3190
3191       If you enable or disable this setting, users cannot change or override this setting.
3192
3193       If this setting is left not set the user can decide to use this function or not.
3194
3195       This setting has been removed from <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> 29 and higher versions.''',
3196     },
3197     {
3198       'name': 'TranslateEnabled',
3199       'type': 'main',
3200       'schema': { 'type': 'boolean' },
3201       'supported_on': [
3202         'chrome.*:12-',
3203         'chrome_os:12-',
3204         'android:30-',
3205         'ios:34-',
3206       ],
3207       'features': {
3208         'can_be_recommended': True,
3209         'dynamic_refresh': True,
3210         'per_profile': True,
3211       },
3212       'example_value': True,
3213       'id': 80,
3214       'caption': '''Enable Translate''',
3215       'desc': '''Enables the integrated Google Translate service on <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
3216
3217       If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will show an integrated toolbar offering to translate the page for the user, when appropriate.
3218
3219       If you disable this setting, users will never see the translation bar.
3220
3221       If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
3222
3223       If this setting is left not set the user can decide to use this function or not.''',
3224     },
3225     {
3226       'name': 'AllowOutdatedPlugins',
3227       'type': 'main',
3228       'schema': { 'type': 'boolean' },
3229       'supported_on': ['chrome.*:12-', 'chrome_os:12-'],
3230       'features': {
3231         'dynamic_refresh': True,
3232         'per_profile': True,
3233       },
3234       'example_value': True,
3235       'id': 81,
3236       'caption': '''Allow running plugins that are outdated''',
3237       'desc': '''Allows <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to run plugins that are outdated.
3238
3239       If you enable this setting, outdated plugins are used as normal plugins.
3240
3241       If you disable this setting, outdated plugins will not be used and users will not be asked for permission to run them.
3242
3243       If this setting is not set, users will be asked for permission to run outdated plugins.''',
3244     },
3245     {
3246       'name': 'AlwaysAuthorizePlugins',
3247       'type': 'main',
3248       'schema': { 'type': 'boolean' },
3249       'supported_on': ['chrome.*:13-', 'chrome_os:13-'],
3250       'features': {
3251         'dynamic_refresh': True,
3252         'per_profile': True,
3253       },
3254       'example_value': True,
3255       'id': 86,
3256       'caption': '''Always runs plugins that require authorization''',
3257       'desc': '''Allows <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to run plugins that require authorization.
3258
3259       If you enable this setting, plugins that are not outdated always run.
3260
3261       If this setting is disabled or not set, users will be asked for permission to run plugins that require authorization. These are plugins that can compromise security.''',
3262     },
3263     {
3264       'name': 'BookmarkBarEnabled',
3265       'type': 'main',
3266       'schema': { 'type': 'boolean' },
3267       'supported_on': ['chrome.*:12-', 'chrome_os:12-'],
3268       'features': {
3269         'can_be_recommended': True,
3270         'dynamic_refresh': True,
3271         'per_profile': True,
3272       },
3273       'example_value': True,
3274       'id': 82,
3275       'caption': '''Enable Bookmark Bar''',
3276       'desc': '''Enables the bookmark bar on <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
3277
3278       If you enable this setting, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will show a bookmark bar.
3279
3280       If you disable this setting, users will never see the bookmark bar.
3281
3282       If you enable or disable this setting, users cannot change or override it in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
3283
3284       If this setting is left not set the user can decide to use this function or not.''',
3285     },
3286     {
3287       'name': 'EditBookmarksEnabled',
3288       'type': 'main',
3289       'schema': { 'type': 'boolean' },
3290       'supported_on': ['chrome.*:12-', 'chrome_os:12-', 'android:30-'],
3291       'features': {
3292         'dynamic_refresh': True,
3293         'per_profile': True,
3294       },
3295       'example_value': False,
3296       'id': 83,
3297       'caption': '''Enables or disables bookmark editing''',
3298       'desc': '''Enables or disables editing bookmarks in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
3299
3300       If you enable this setting, bookmarks can be added, removed or modified. This is the default also when this policy is not set.
3301
3302       If you disable this setting, bookmarks can not be added, removed or modified. Existing bookmarks are still available.''',
3303     },
3304     {
3305       'name': 'ShowAppsShortcutInBookmarkBar',
3306       'type': 'main',
3307       'schema': { 'type': 'boolean' },
3308       'supported_on': ['chrome.*:37-'],
3309       'features': {
3310         'dynamic_refresh': True,
3311         'per_profile': True,
3312       },
3313       'example_value': False,
3314       'id': 267,
3315       'caption': '''Show the apps shortcut in the bookmark bar''',
3316       'desc': '''Enables or disables the apps shortcut in the bookmark bar.
3317
3318       If this policy is not set then the user can choose to show or hide the apps shortcut from the bookmark bar context menu.
3319
3320       If this policy is configured then the user can't change it, and the apps shortcut is always shown or never shown.''',
3321     },
3322     {
3323       'name': 'AllowFileSelectionDialogs',
3324       'type': 'main',
3325       'schema': { 'type': 'boolean' },
3326       'supported_on': ['chrome.*:12-'],
3327       'features': {
3328         'dynamic_refresh': True,
3329         'per_profile': False,
3330       },
3331       'example_value': True,
3332       'id': 84,
3333       'caption': '''Allow invocation of file selection dialogs''',
3334       'desc': '''Allows access to local files on the machine by allowing <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to display file selection dialogs.
3335
3336       If you enable this setting, users can open file selection dialogs as normal.
3337
3338       If you disable this setting, whenever the user performs an action which would provoke a file selection dialog (like importing bookmarks, uploading files, saving links, etc.) a message is displayed instead and the user is assumed to have clicked Cancel on the file selection dialog.
3339
3340       If this setting is not set, users can open file selection dialogs as normal.''',
3341     },
3342     {
3343       'name': 'GCFUserDataDir',
3344       'type': 'string',
3345       'schema': { 'type': 'string' },
3346       'supported_on': ['chrome_frame:12-32'],
3347       'features': {
3348         'dynamic_refresh': False,
3349       },
3350       'example_value': '${user_home}/Chrome Frame',
3351       'id': 87,
3352       'caption': '''Set <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> user data directory''',
3353       'desc': '''Configures the directory that <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> will use for storing user data.
3354
3355       If you set this policy, <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> will use the provided directory.
3356
3357       See http://www.chromium.org/administrators/policy-list-3/user-data-directory-variables for a list of variables that can be used.
3358
3359       If this setting is left not set the default profile directory will be used.''',
3360       'label': '''Set user data directory''',
3361     },
3362     {
3363       'name': 'DevicePolicyRefreshRate',
3364       'type': 'int',
3365       'schema': { 'type': 'integer' },
3366       'supported_on': ['chrome_os:11-'],
3367       'device_only': True,
3368       'features': {
3369         'dynamic_refresh': True,
3370       },
3371       'example_value': 3600000,
3372       'id': 90,
3373       'caption': '''Refresh rate for Device Policy''',
3374       'desc': '''Specifies the period in milliseconds at which the device management service is queried for device policy information.
3375
3376       Setting this policy overrides the default value of 3 hours. Valid values for this policy are in the range from 1800000 (30 minutes) to 86400000 (1 day). Any values not in this range will be clamped to the respective boundary.
3377
3378       Leaving this policy not set will make <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> use the default value of 3 hours.''',
3379     },
3380     {
3381       'name': 'ImportBookmarks',
3382       'type': 'main',
3383       'schema': { 'type': 'boolean' },
3384       'supported_on': ['chrome.*:15-'],
3385       'features': {
3386         'can_be_recommended': True,
3387         'dynamic_refresh': True,
3388         'per_profile': True,
3389       },
3390       'example_value': True,
3391       'id': 97,
3392       'caption': '''Import bookmarks from default browser on first run''',
3393       'desc': '''This policy forces bookmarks to be imported from the current default browser if enabled. If enabled, this policy also affects the import dialog.
3394
3395       If disabled, no bookmarks are imported.
3396
3397       If it is not set, the user may be asked whether to import, or importing may happen automatically.''',
3398       'label': '''Import bookmarks from default browser on first run''',
3399     },
3400     {
3401       'name': 'ImportHistory',
3402       'type': 'main',
3403       'schema': { 'type': 'boolean' },
3404       'supported_on': ['chrome.*:15-'],
3405       'features': {
3406         'can_be_recommended': True,
3407         'dynamic_refresh': True,
3408         'per_profile': True,
3409       },
3410       'example_value': True,
3411       'id': 98,
3412       'caption': '''Import browsing history from default browser on first run''',
3413       'desc': '''This policy forces the browsing history to be imported from the current default browser if enabled. If enabled, this policy also affects the import dialog.
3414
3415       If disabled, no browsing history is imported.
3416
3417       If it is not set, the user may be asked whether to import, or importing may happen automatically.''',
3418       'label': '''Import browsing history from default browser on first run''',
3419     },
3420     {
3421       'name': 'ImportHomepage',
3422       'type': 'main',
3423       'schema': { 'type': 'boolean' },
3424       'supported_on': ['chrome.*:15-'],
3425       'features': {
3426         'dynamic_refresh': True,
3427         'per_profile': True,
3428       },
3429       'example_value': True,
3430       'id': 99,
3431       'caption': '''Import of homepage from default browser on first run''',
3432       'desc': '''This policy forces the home page to be imported from the current default browser if enabled.
3433
3434       If disabled, the home page is not imported.
3435
3436       If it is not set, the user may be asked whether to import, or importing may happen automatically.''',
3437       'label': '''Import of homepage from default browser on first run''',
3438     },
3439     {
3440       'name': 'ImportSearchEngine',
3441       'type': 'main',
3442       'schema': { 'type': 'boolean' },
3443       'supported_on': ['chrome.*:15-'],
3444       'features': {
3445         'can_be_recommended': True,
3446         'dynamic_refresh': True,
3447         'per_profile': True,
3448       },
3449       'example_value': True,
3450       'id': 100,
3451       'caption': '''Import search engines from default browser on first run''',
3452       'desc': '''This policy forces search engines to be imported from the current default browser if enabled. If enabled, this policy also affects the import dialog.
3453
3454       If disabled, the default search engine is not imported.
3455
3456       If it is not set, the user may be asked whether to import, or importing may happen automatically.''',
3457       'label': '''Import search engines from default browser on first run''',
3458     },
3459     {
3460       'name': 'ImportSavedPasswords',
3461       'type': 'main',
3462       'schema': { 'type': 'boolean' },
3463       'supported_on': ['chrome.*:15-'],
3464       'features': {
3465         'can_be_recommended': True,
3466         'dynamic_refresh': True,
3467         'per_profile': True,
3468       },
3469       'example_value': True,
3470       'id': 101,
3471       'caption': '''Import saved passwords from default browser on first run''',
3472       'desc': '''This policy forces the saved passwords to be imported from the previous default browser if enabled. If enabled, this policy also affects the import dialog.
3473
3474       If disabled, the saved passwords are not imported.
3475
3476       If it is not set, the user may be asked whether to import, or importing may happen automatically.''',
3477       'label': '''Import saved passwords from default browser on first run''',
3478     },
3479     {
3480       'name': 'ImportAutofillFormData',
3481       'type': 'main',
3482       'schema': { 'type': 'boolean' },
3483       'supported_on': ['chrome.*:39-'],
3484       'features': {
3485         'can_be_recommended': True,
3486         'dynamic_refresh': True,
3487         'per_profile': True,
3488       },
3489       'example_value': True,
3490       'id': 277,
3491       'caption': '''Import autofill form data from default browser on first run''',
3492       'desc': '''This policy forces the autofill form data to be imported from the previous default browser if enabled. If enabled, this policy also affects the import dialog.
3493
3494       If disabled, the autofill form data is not imported.
3495
3496       If it is not set, the user may be asked whether to import, or importing may happen automatically.''',
3497       'label': '''Import autofill form data from default browser on first run''',
3498     },
3499     {
3500       'name': 'MaxConnectionsPerProxy',
3501       'type': 'int',
3502       'schema': { 'type': 'integer' },
3503       'supported_on': ['chrome.*:14-'],
3504       'features': {
3505         'dynamic_refresh': False,
3506         'per_profile': False,
3507       },
3508       'example_value': 32,
3509       'id': 92,
3510       'caption': '''Maximal number of concurrent connections to the proxy server''',
3511       'desc': '''Specifies the maximal number of simultaneous connections to the proxy server.
3512
3513       Some proxy servers can not handle high number of concurrent connections per client and this can be solved by setting this policy to a lower value.
3514
3515       The value of this policy should be lower than 100 and higher than 6 and the default value is 32.
3516
3517       Some web apps are known to consume many connections with hanging GETs, so lowering below 32 may lead to browser networking hangs if too many such web apps are open. Lower below the default at your own risk.
3518
3519       If this policy is left not set the default value will be used which is 32.''',
3520     },
3521     {
3522       'name': 'HideWebStorePromo',
3523       'type': 'main',
3524       'schema': { 'type': 'boolean' },
3525       'supported_on': ['chrome.*:15-21', 'chrome_os:15-21'],
3526       'deprecated': True,
3527       'features': {
3528         'dynamic_refresh': False,
3529       },
3530       'example_value': False,
3531       'id': 96,
3532       'caption': '''Prevent app promotions from appearing on the new tab page''',
3533       'desc': '''When set to True, promotions for Chrome Web Store apps will not appear on the new tab page.
3534
3535       Setting this option to False or leaving it not set will make the promotions for Chrome Web Store apps appear on the new tab page''',
3536     },
3537     {
3538       'name': 'URLBlacklist',
3539       'type': 'list',
3540       'schema': {
3541         'type': 'array',
3542         'items': { 'type': 'string' },
3543       },
3544       'supported_on': [
3545         'chrome.*:15-',
3546         'chrome_os:15-',
3547         'android:30-',
3548         'ios:34-',
3549       ],
3550       'features': {
3551         'dynamic_refresh': True,
3552         'per_profile': True,
3553       },
3554       'example_value': ['example.com', 'https://ssl.server.com', 'hosting.com/bad_path', 'http://server:8080/path', '.exact.hostname.com', '*'],
3555       'id': 103,
3556       'caption': '''Block access to a list of URLs''',
3557       'desc': '''Blocks access to the listed URLs.
3558
3559       This policy prevents the user from loading web pages from blacklisted URLs.
3560
3561       A URL has the format 'scheme://host:port/path'.
3562       The optional scheme can be http, https or ftp. Only this scheme will be blocked; if none is specified, all schemes are blocked.
3563       The host can be a hostname or an IP address. Subdomains of a hostname will also be blocked. To prevent blocking subdomains, include a '.' before the hostname. The special hostname '*' will block all domains.
3564       The optional port is a valid port number from 1 to 65535. If none is specified, all ports are blocked.
3565       If the optional path is specified, only paths with that prefix will be blocked.
3566
3567       Exceptions can be defined in the URL whitelist policy. These policies are limited to 1000 entries; subsequent entries will be ignored.
3568
3569       If this policy is not set no URL will be blacklisted in the browser.''',
3570     },
3571     {
3572       'name': 'URLWhitelist',
3573       'type': 'list',
3574       'schema': {
3575         'type': 'array',
3576         'items': { 'type': 'string' },
3577       },
3578       'supported_on': [
3579         'chrome.*:15-',
3580         'chrome_os:15-',
3581         'android:30-',
3582         'ios:34-',
3583       ],
3584       'features': {
3585         'dynamic_refresh': True,
3586         'per_profile': True,
3587       },
3588       'example_value': ['example.com', 'https://ssl.server.com', 'hosting.com/bad_path', 'http://server:8080/path', '.exact.hostname.com'],
3589       'id': 104,
3590       'caption': '''Allows access to a list of URLs''',
3591       'desc': '''Allows access to the listed URLs, as exceptions to the URL blacklist.
3592
3593       See the description of the URL blacklist policy for the format of entries of this list.
3594
3595       This policy can be used to open exceptions to restrictive blacklists. For example, '*' can be blacklisted to block all requests, and this policy can be used to allow access to a limited list of URLs. It can be used to open exceptions to certain schemes, subdomains of other domains, ports, or specific paths.
3596
3597       The most specific filter will determine if a URL is blocked or allowed. The whitelist takes precedence over the blacklist.
3598
3599       This policy is limited to 1000 entries; subsequent entries will be ignored.
3600
3601       If this policy is not set there will be no exceptions to the blacklist from the 'URLBlacklist' policy.''',
3602     },
3603     {
3604       'name': 'OpenNetworkConfiguration',
3605       'type': 'string',
3606       'schema': { 'type': 'string' },
3607       'supported_on': ['chrome_os:16-'],
3608       'features': {
3609         'dynamic_refresh': True,
3610         'per_profile': True,
3611       },
3612       'example_value': '{ "NetworkConfigurations": [ { "GUID": "{4b224dfd-6849-7a63-5e394343244ae9c9}", "Name": "my WiFi", "Type": "WiFi", "WiFi": { "SSID": "my WiFi", "HiddenSSID": false, "Security": "None", "AutoConnect": true } } ] }',
3613       'id': 107,
3614       'caption': '''User-level network configuration''',
3615       'desc': '''Allows pushing network configuration to be applied per-user to a <ph name="PRODUCT_OS_NAME">$2<ex>Chromium OS</ex></ph> device. The network configuration is a JSON-formatted string as defined by the Open Network Configuration format described at <ph name="ONC_SPEC_URL">https://sites.google.com/a/chromium.org/dev/chromium-os/chromiumos-design-docs/open-network-configuration</ph>''',
3616     },
3617     {
3618       'name': 'DeviceOpenNetworkConfiguration',
3619       'type': 'string',
3620       'schema': { 'type': 'string' },
3621       'supported_on': ['chrome_os:16-'],
3622       'device_only': True,
3623       'features': {
3624         'dynamic_refresh': True,
3625       },
3626       'example_value': '{ "NetworkConfigurations": [ { "GUID": "{4b224dfd-6849-7a63-5e394343244ae9c9}", "Name": "my WiFi", "Type": "WiFi", "WiFi": { "SSID": "my WiFi", "HiddenSSID": false, "Security": "None", "AutoConnect": true } } ] }',
3627       'id': 108,
3628       'caption': '''Device-level network configuration''',
3629       'desc': '''Allows pushing network configuration to be applied for all users of a <ph name="PRODUCT_OS_NAME">$2<ex>Chromium OS</ex></ph> device. The network configuration is a JSON-formatted string as defined by the Open Network Configuration format described at <ph name="ONC_SPEC_URL">https://sites.google.com/a/chromium.org/dev/chromium-os/chromiumos-design-docs/open-network-configuration</ph>''',
3630     },
3631     {
3632       'name': 'CloudPrintSubmitEnabled',
3633       'type': 'main',
3634       'schema': { 'type': 'boolean' },
3635       'supported_on': ['chrome.*:17-'],
3636       'features': {
3637         'dynamic_refresh': True,
3638         'per_profile': True,
3639       },
3640       'example_value': True,
3641       'id': 109,
3642       'caption': '''Enable submission of documents to <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph>''',
3643       'desc': '''Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to submit documents to <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> for printing.  NOTE: This only affects <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> support in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.  It does not prevent users from submitting print jobs on web sites.
3644
3645       If this setting is enabled or not configured, users can print to <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> from the <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> print dialog.
3646
3647       If this setting is disabled, users cannot print to <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> from the <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> print dialog''',
3648     },
3649     {
3650       'name': 'EnterpriseWebStoreURL',
3651       'type': 'string',
3652       'schema': { 'type': 'string' },
3653       'supported_on': ['chrome.*:17-28', 'chrome_os:17-28'],
3654       'features': {
3655         'dynamic_refresh': True,
3656         'per_profile': True,
3657       },
3658       'deprecated': True,
3659       'example_value': 'http://company-intranet/chromeapps',
3660       'id': 112,
3661       'caption': '''Enterprise web store URL (deprecated)''',
3662       'desc': '''This setting has been retired as of <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 29. The recommended way to set up organization-hosted extension/app collections is to include the site hosting the CRX packages in ExtensionInstallSources and put direct download links to the packages on a web page. A launcher for that web page can be created using the ExtensionInstallForcelist policy.''',
3663     },
3664     {
3665       'name': 'EnterpriseWebStoreName',
3666       'type': 'string',
3667       'schema': { 'type': 'string' },
3668       'supported_on': ['chrome.*:17-28', 'chrome_os:17-28'],
3669       'features': {
3670         'dynamic_refresh': True,
3671         'per_profile': True,
3672       },
3673       'deprecated': True,
3674       'example_value': 'WidgCo Chrome Apps',
3675       'id': 113,
3676       'caption': '''Enterprise web store name (deprecated)''',
3677       'desc': '''This setting has been retired as of <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 29. The recommended way to set up organization-hosted extension/app collections is to include the site hosting the CRX packages in ExtensionInstallSources and put direct download links to the packages on a web page. A launcher for that web page can be created using the ExtensionInstallForcelist policy.''',
3678     },
3679     {
3680       'name': 'EnableOriginBoundCerts',
3681       'type': 'main',
3682       'schema': { 'type': 'boolean' },
3683       'supported_on': ['chrome.*:17-35'],
3684       'features': {
3685         'dynamic_refresh': True,
3686         'per_profile': False,
3687       },
3688       'deprecated': True,
3689       'future': True,
3690       'example_value': True,
3691       'id': 114,
3692       'caption': '''Enable TLS domain-bound certificates extension (deprecated)''',
3693       'desc': '''This policy has been retired as of <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 36.
3694
3695       Specifies whether the TLS domain-bound certificates extension should be enabled.
3696
3697       This setting is used to enable the TLS domain-bound certificates extension for testing.  This experimental setting will be removed in the future.''',
3698     },
3699     {
3700       'name': 'EnableMemoryInfo',
3701       'type': 'main',
3702       'schema': { 'type': 'boolean' },
3703       'supported_on': ['chrome.*:17-34', 'chrome_os:18-34'],
3704       'features': {
3705         'dynamic_refresh': True,
3706         'per_profile': True,
3707       },
3708       'deprecated': True,
3709       'future': True,
3710       'example_value': False,
3711       'id': 115,
3712       'caption': '''Enable reporting memory info (JS heap size) to page (deprecated)''',
3713       'desc': '''This policy has been retired as of <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 35.
3714
3715       Memory info is anyway reported to page, regardless of the option value, but the sizes reported are
3716       quantized and the rate of updates is limited for security reasons. To obtain real-time precise data,
3717       please use tools like Telemetry.''',
3718     },
3719     {
3720       'name': 'DisablePrintPreview',
3721       'type': 'main',
3722       'schema': { 'type': 'boolean' },
3723       'supported_on': ['chrome.*:18-'],
3724       'deprecated': True,
3725       'features': {
3726         'dynamic_refresh': False,
3727         'per_profile': True,
3728       },
3729       'example_value': False,
3730       'id': 117,
3731       'caption': '''Disable Print Preview (deprecated)''',
3732       'desc': '''Show the system print dialog instead of print preview.
3733
3734       When this setting is enabled, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will open the system print dialog instead of the built-in print preview when a user requests a page to be printed.
3735
3736       If this policy is not set or is set to false, print commands trigger the print preview screen.''',
3737     },
3738     {
3739       'name': 'DisableSSLRecordSplitting',
3740       'type': 'main',
3741       'schema': { 'type': 'boolean' },
3742       'supported_on': ['chrome.*:18-', 'chrome_os:18-'],
3743       'features': {
3744         'dynamic_refresh': True,
3745         'per_profile': False,
3746       },
3747       'example_value': True,
3748       'id': 118,
3749       'caption': '''Disable SSL record splitting''',
3750       'desc': '''Specifies whether SSL record splitting should be disabled. Record splitting is a workaround for a weakness in SSL 3.0 and TLS 1.0 but can cause compatibility issues with some HTTPS servers and proxies.
3751
3752       If the policy is not set, or is set to false, then record splitting will be used on SSL/TLS connections which use CBC ciphersuites.''',
3753     },
3754     {
3755       'name': 'EnableOnlineRevocationChecks',
3756       'type': 'main',
3757       'schema': { 'type': 'boolean' },
3758       'supported_on': ['chrome.*:19-', 'chrome_os:19-'],
3759       'features': {
3760         'dynamic_refresh': True,
3761         'per_profile': False,
3762       },
3763       'example_value': False,
3764       'id': 129,
3765       'caption': '''Whether online OCSP/CRL checks are performed''',
3766       'desc': '''In light of the fact that soft-fail, online revocation checks provide no effective security benefit, they are disabled by default in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> version 19 and later. By setting this policy to true, the previous behavior is restored and online OCSP/CRL checks will be performed.
3767
3768       If the policy is not set, or is set to false, then <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will not perform online revocation checks in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> 19 and later.''',
3769     },
3770     {
3771       'name': 'RequireOnlineRevocationChecksForLocalAnchors',
3772       'type': 'main',
3773       'schema': { 'type': 'boolean' },
3774       'supported_on': ['chrome_os:30-', 'chrome.linux:30-', 'chrome.win:30-'],
3775       'features': {
3776         'dynamic_refresh': True,
3777         'per_profile': False,
3778       },
3779       'example_value': False,
3780       'id': 235,
3781       'caption': '''Whether online OCSP/CRL checks are required for local trust anchors''',
3782       'desc': '''When this setting is enabled, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will always perform revocation checking for server certificates that successfully validate and are signed by locally-installed CA certificates.
3783
3784       If <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> is unable to obtain revocation status information, such certificates will be treated as revoked ('hard-fail').
3785
3786       If this policy is not set, or it is set to false, then <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use the existing online revocation checking settings.''',
3787     },
3788     {
3789       'name': 'ForceEphemeralProfiles',
3790       'type': 'main',
3791       'schema': { 'type': 'boolean' },
3792       'supported_on': ['chrome.*:32-'],
3793       'features': {
3794         'dynamic_refresh': False,
3795         'per_profile': True,
3796       },
3797       'example_value': True,
3798       'id': 245,
3799       'caption': '''Ephemeral profile''',
3800       'desc': '''If set to enabled this policy forces the profile to be switched to ephemeral mode. If this policy is specified as an OS policy (e.g. GPO on Windows) it will apply to every profile on the system; if the policy is set as a Cloud policy it will apply only to a profile signed in with a managed account.
3801
3802       In this mode the profile data is persisted on disk only for the length of the user session. Features like browser history, extensions and their data, web data like cookies and web databases are not preserved after the browser is closed. However this does not prevent the user from downloading any data to disk manually, save pages or print them.
3803
3804       If the user has enabled sync all this data is preserved in his sync profile just like with regular profiles. Incognito mode is also available if not explicitly disabled by policy.
3805
3806       If the policy is set to disabled or left not set signing in leads to regular profiles.'''
3807     },
3808     {
3809       'name': 'SAMLOfflineSigninTimeLimit',
3810       'type': 'int',
3811       'schema': { 'type': 'integer', 'minimum': -1 },
3812       'supported_on': ['chrome_os:34-'],
3813       'features': {
3814         'dynamic_refresh': True,
3815         'per_profile': True,
3816       },
3817       'example_value': 32,
3818       'id': 254,
3819       'caption': '''Limit the time for which a user authenticated via SAML can log in offline''',
3820       'desc': '''Limit the time for which a user authenticated via SAML can log in offline.
3821
3822       During login, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can authenticate against a server (online) or using a cached password (offline).
3823
3824       When this policy is set to a value of -1, the user can authenticate offline indefinitely. When this policy is set to any other value, it specifies the length of time since the last online authentication after which the user must use online authentication again.
3825
3826       Leaving this policy not set will make <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> use a default time limit of 14 days after which the user must use online authentication again.
3827
3828       This policy affects only users who authenticated using SAML.
3829
3830       The policy value should be specified in seconds.''',
3831     },
3832     {
3833       'name': 'AutoCleanUpStrategy',
3834       'type': 'string-enum',
3835       'schema': {
3836         'type': 'string',
3837         'enum': [ 'remove-lru', 'remove-lru-if-dormant' ],
3838       },
3839       'items': [
3840         {
3841           'name': 'RemoveLRU',
3842           'value': 'remove-lru',
3843           'caption': '''Least recently used users are removed until there is enough free space''',
3844         },
3845         {
3846           'name': 'RemoveLRUIfDormant',
3847           'value': 'remove-lru-if-dormant',
3848           'caption': '''Least recently used users who have not logged in within last 3 months are removed until there is enough free space''',
3849         },
3850       ],
3851       'supported_on': ['chrome_os:32-35'],
3852       'device_only': True,
3853       'features': {
3854         'dynamic_refresh': True,
3855       },
3856       'deprecated': True,
3857       'example_value': 'remove-lru',
3858       'id': 246,
3859       'caption': '''Selects the strategy used to free up disk space during automatic clean-up (deprecated)''',
3860       'desc': '''This policy is deprecated. <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will always use the 'RemoveLRU' clean-up strategy.
3861
3862       Controls the automatic clean-up behavior on <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> devices. Automatic clean-up is triggered when the amount of free disk space reaches a critical level to recover some disk space.
3863
3864       If this policy is set to 'RemoveLRU', the automatic clean-up will keep removing users from the device in least-recently-logged-in order until there is enough free space.
3865
3866       If this policy is set to 'RemoveLRUIfDormant', the automatic clean-up will keep removing users who have not logged in for at least 3 months in least-recently-logged-in order until there is enough free space.
3867
3868       If this policy is not set, automatic clean-up uses the default built-in strategy. Currently, it is the 'RemoveLRUIfDormant' strategy.'''
3869     },
3870     {
3871       'name': 'ReportDeviceVersionInfo',
3872       'type': 'main',
3873       'schema': { 'type': 'boolean' },
3874       'supported_on': ['chrome_os:18-'],
3875       'device_only': True,
3876       'features': {
3877         'dynamic_refresh': True,
3878       },
3879       'example_value': False,
3880       'id': 119,
3881       'caption': '''Report OS and firmware version''',
3882       'desc': '''Report OS and firmware version of enrolled devices.
3883
3884       If this setting is not set or set to True, enrolled devices will report the OS and firmware version periodically. If this setting is set to False, version info will not be reported.''',
3885     },
3886     {
3887       'name': 'ReportDeviceActivityTimes',
3888       'type': 'main',
3889       'schema': { 'type': 'boolean' },
3890       'supported_on': ['chrome_os:18-'],
3891       'device_only': True,
3892       'features': {
3893         'dynamic_refresh': True,
3894       },
3895       'example_value': False,
3896       'id': 120,
3897       'caption': '''Report device activity times''',
3898       'desc': '''Report device activity times.
3899
3900       If this setting is not set or set to True, enrolled devices will report time periods when a user is active on the device. If this setting is set to False, device activity times will not be recorded or reported.''',
3901     },
3902     {
3903       'name': 'ReportDeviceBootMode',
3904       'type': 'main',
3905       'schema': { 'type': 'boolean' },
3906       'supported_on': ['chrome_os:18-'],
3907       'device_only': True,
3908       'features': {
3909         'dynamic_refresh': True,
3910       },
3911       'example_value': False,
3912       'id': 121,
3913       'caption': '''Report device boot mode''',
3914       'desc': '''Report the state of the device's dev switch at boot.
3915
3916       If the policy is set to false, the state of the dev switch will not be reported.''',
3917     },
3918     {
3919       'name': 'ReportDeviceLocation',
3920       'type': 'main',
3921       'schema': { 'type': 'boolean' },
3922       'supported_on': ['chrome_os:20-'],
3923       'device_only': True,
3924       'features': {
3925         'dynamic_refresh': True,
3926       },
3927       'future': True,
3928       'example_value': False,
3929       'id': 143,
3930       'caption': '''Report device location''',
3931       'desc': '''Report the geographic location of the device.
3932
3933       If the policy is not set, or set to false, the location will not be reported.''',
3934     },
3935     {
3936       'name': 'ReportDeviceNetworkInterfaces',
3937       'type': 'main',
3938       'schema': { 'type': 'boolean' },
3939       'supported_on': ['chrome_os:29-'],
3940       'device_only': True,
3941       'features': {
3942         'dynamic_refresh': True,
3943       },
3944       'example_value': False,
3945       'id': 224,
3946       'caption': '''Report device network interfaces''',
3947       'desc': '''Report list of network interfaces with their types and hardware addresses to the server.
3948
3949       If the policy is set to false, the interface list will not be reported.''',
3950     },
3951     {
3952       'name': 'ReportDeviceUsers',
3953       'type': 'main',
3954       'schema': { 'type': 'boolean' },
3955       'supported_on': ['chrome_os:32-'],
3956       'device_only': True,
3957       'features': {
3958         'dynamic_refresh': True,
3959       },
3960       'example_value': False,
3961       'id': 248,
3962       'caption': '''Report device users''',
3963       'desc': '''Report list of device users that have recently logged in.
3964
3965       If the policy is set to false, the users will not be reported.''',
3966     },
3967     {
3968       'name': 'DeviceUserWhitelist',
3969       'type': 'list',
3970       'schema': {
3971         'type': 'array',
3972         'items': { 'type': 'string' },
3973       },
3974       'supported_on': ['chrome_os:12-'],
3975       'device_only': True,
3976       'features': {
3977         'dynamic_refresh': True,
3978       },
3979       'example_value': [ 'madmax@managedchrome.com' ],
3980       'id': 122,
3981       'caption': '''Login user white list''',
3982       'desc': '''Defines the list of users that are allowed to login to the device. Entries are of the form <ph name="USER_WHITELIST_ENTRY_FORMAT">user@domain</ph>, such as <ph name="USER_WHITELIST_ENTRY_EXAMPLE">madmax@managedchrome.com</ph>. To allow arbitrary users on a domain, use entries of the form <ph name="USER_WHITELIST_ENTRY_WILDCARD">*@domain</ph>.
3983
3984       If this policy is not configured, there are no restrictions on which users are allowed to sign in. Note that creating new users still requires the <ph name="DEVICEALLOWNEWUSERS_POLICY_NAME">DeviceAllowNewUsers</ph> policy to be configured appropriately.''',
3985     },
3986     {
3987       'name': 'DeviceAllowNewUsers',
3988       'type': 'main',
3989       'schema': { 'type': 'boolean' },
3990       'supported_on': ['chrome_os:12-'],
3991       'device_only': True,
3992       'features': {
3993         'dynamic_refresh': True,
3994       },
3995       'example_value': True,
3996       'id': 123,
3997       'caption': '''Allow creation of new user accounts''',
3998       'desc': '''Controls whether <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> allows new user accounts to be created. If this policy is set to false, users that do not have an account already will not be able to login.
3999
4000       If this policy is set to true or not configured, new user accounts will be allowed to be created provided that <ph name="DEVICEUSERWHITELISTPROTO_POLICY_NAME">DeviceUserWhitelist</ph> does not prevent the user from logging in.''',
4001     },
4002     {
4003       'name': 'DeviceGuestModeEnabled',
4004       'type': 'main',
4005       'schema': { 'type': 'boolean' },
4006       'supported_on': ['chrome_os:12-'],
4007       'device_only': True,
4008       'features': {
4009         'dynamic_refresh': True,
4010       },
4011       'example_value': True,
4012       'id': 124,
4013       'caption': '''Enable guest mode''',
4014       'desc': '''If this policy is set to true or not configured, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will enable guest logins. Guest logins are anonymous user sessions and do not require a password.
4015
4016       If this policy is set to false, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will not allow guest sessions to be started.''',
4017     },
4018     {
4019       'name': 'DeviceShowUserNamesOnSignin',
4020       'type': 'main',
4021       'schema': { 'type': 'boolean' },
4022       'supported_on': ['chrome_os:12-'],
4023       'device_only': True,
4024       'features': {
4025         'dynamic_refresh': True,
4026       },
4027       'example_value': True,
4028       'id': 125,
4029       'caption': '''Show usernames on login screen''',
4030       'desc': '''If this policy is set to true or not configured, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will show existing users on the login screen and allow to pick one. If this policy is set to false, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will use the username/password prompt for login.''',
4031     },
4032     {
4033       'name': 'DeviceDataRoamingEnabled',
4034       'type': 'main',
4035       'schema': { 'type': 'boolean' },
4036       'supported_on': ['chrome_os:12-'],
4037       'device_only': True,
4038       'features': {
4039         'dynamic_refresh': True,
4040       },
4041       'example_value': True,
4042       'id': 126,
4043       'caption': '''Enable data roaming''',
4044       'desc': '''Determines whether data roaming should be enabled for the device. If set to true, data roaming is allowed. If left unconfigured or set to false, data roaming will be not available.''',
4045     },
4046     {
4047       'name': 'DeviceMetricsReportingEnabled',
4048       'type': 'main',
4049       'schema': { 'type': 'boolean' },
4050       'supported_on': ['chrome_os:14-'],
4051       'device_only': True,
4052       'features': {
4053         'dynamic_refresh': True,
4054       },
4055       'example_value': True,
4056       'id': 127,
4057       'caption': '''Enable metrics reporting''',
4058       'desc': '''Controls whether usage metrics are reported back to Google. If set to true, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will report usage metrics. If not configured or set to false, metrics reporting will be disabled.''',
4059     },
4060     {
4061       'name': 'ChromeOsReleaseChannel',
4062       'type': 'string-enum',
4063       'schema': {
4064         'type': 'string',
4065         'enum': [ 'stable-channel', 'beta-channel', 'dev-channel' ],
4066       },
4067       'items': [
4068         {
4069           'name': 'StableChannel',
4070           'value': 'stable-channel',
4071           'caption': '''Stable channel''',
4072         },
4073         {
4074           'name': 'BetaChannel',
4075           'value': 'beta-channel',
4076           'caption': '''Beta channel''',
4077         },
4078         {
4079           'name': 'DevChannel',
4080           'value': 'dev-channel',
4081           'caption': '''Dev channel (may be unstable)''',
4082         },
4083       ],
4084       'supported_on': ['chrome_os:11-'],
4085       'device_only': True,
4086       'features': {
4087         'dynamic_refresh': True,
4088       },
4089       'example_value': 'stable-channel',
4090       'id': 91,
4091       'caption': '''Release channel''',
4092       'desc': '''Specifies the release channel that this device should be locked to.''',
4093     },
4094     {
4095       'name': 'ChromeOsReleaseChannelDelegated',
4096       'type': 'main',
4097       'schema': { 'type': 'boolean' },
4098       'supported_on': ['chrome_os:19-'],
4099       'device_only': True,
4100       'features': {
4101         'dynamic_refresh': True,
4102       },
4103       'example_value': False,
4104       'id': 134,
4105       'caption': '''Whether the release channel should be configurable by the user''',
4106       'desc': '''If this policy is set to True and the ChromeOsReleaseChannel policy is not specified then users of the enrolling domain will be allowed to change the release channel of the device. If this policy is set to false the device will be locked in whatever channel it was last set.
4107
4108       The user selected channel will be overridden by the ChromeOsReleaseChannel policy, but if the policy channel is more stable than the one that was installed on the device, then the channel will only switch after the version of the more stable channel reaches a higher version number than the one installed on the device.''',
4109     },
4110     {
4111       'name': 'DeviceEphemeralUsersEnabled',
4112       'type': 'main',
4113       'schema': { 'type': 'boolean' },
4114       'supported_on': ['chrome_os:19-'],
4115       'device_only': True,
4116       'features': {
4117         'dynamic_refresh': True,
4118       },
4119       'example_value': True,
4120       'id': 128,
4121       'caption': '''Wipe user data on sign-out''',
4122       'desc': '''Determines whether <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> keeps local account data after logout. If set to true, no persistent accounts are kept by <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> and all data from the user session will be discarded after logout. If this policy is set to false or not configured, the device may keep (encrypted) local user data.''',
4123     },
4124     {
4125       'name': 'DeviceStartUpUrls',
4126       'type': 'list',
4127       'schema': {
4128         'type': 'array',
4129         'items': { 'type': 'string' },
4130       },
4131       'supported_on': ['chrome_os:19-'],
4132       'device_only': True,
4133       'features': {
4134         'dynamic_refresh': True,
4135       },
4136       'example_value': [ 'http://google.com', 'chrome-extension://aaaaaaaaaaaaaaaaaaaaaaaa/' ],
4137       'id': 137,
4138       'caption': '''Load specified urls on demo login''',
4139       'desc': '''This policy is active in retail mode only.
4140
4141       Determines the set of URLs to be loaded when the demo session is started. This policy will override any other mechanisms for setting the initial URL and thus can only be applied to a session not associated with a particular user.''',
4142     },
4143     {
4144       'name': 'DeviceIdleLogoutTimeout',
4145       'type': 'int',
4146       'schema': { 'type': 'integer' },
4147       'supported_on': ['chrome_os:19-'],
4148       'device_only': True,
4149       'features': {
4150         'dynamic_refresh': True,
4151       },
4152       'example_value': 60000,
4153       'id': 130,
4154       'caption': '''Timeout until idle user log-out is executed''',
4155       'desc': '''This policy is active in retail mode only.
4156
4157       When the value of this policy is set and is not 0 then the currently logged in demo user will be logged out automatically after an inactivity time of the specified duration has elapsed.
4158
4159       The policy value should be specified in milliseconds.''',
4160     },
4161     {
4162       'name': 'DeviceIdleLogoutWarningDuration',
4163       'type': 'int',
4164       'schema': { 'type': 'integer' },
4165       'supported_on': ['chrome_os:19-'],
4166       'device_only': True,
4167       'features': {
4168         'dynamic_refresh': True,
4169       },
4170       'example_value': 15000,
4171       'id': 131,
4172       'caption': '''Duration of the idle log-out warning message''',
4173       'desc': '''This policy is active in retail mode only.
4174
4175       When DeviceIdleLogoutTimeout is specified this policy defines the duration of the warning box with a count down timer that is shown to the user before the logout is executed.
4176
4177       The policy value should be specified in milliseconds.''',
4178     },
4179     {
4180       'name': 'DeviceLoginScreenSaverId',
4181       'type': 'string',
4182       'schema': { 'type': 'string' },
4183       'supported_on': ['chrome_os:19-'],
4184       'device_only': True,
4185       'features': {
4186         'dynamic_refresh': True,
4187       },
4188       'example_value': 'fhblcfnmnbehmifidkddcenilbpddlfk',
4189       'id': 132,
4190       'caption': '''Screen saver to be used on the sign-in screen in retail mode''',
4191       'desc': '''This policy is active in retail mode only.
4192
4193       Determines the id of the extension to be used as a screen saver on the sign-in screen. The extension must be part of the AppPack that is configured for this domain through the DeviceAppPack policy.''',
4194     },
4195     {
4196       'name': 'DeviceLoginScreenSaverTimeout',
4197       'type': 'int',
4198       'schema': { 'type': 'integer' },
4199       'supported_on': ['chrome_os:19-'],
4200       'device_only': True,
4201       'features': {
4202         'dynamic_refresh': True,
4203       },
4204       'example_value': 120000,
4205       'id': 133,
4206       'caption': '''Duration of inactivity before the screen saver is shown on the sign-in screen in retail mode''',
4207       'desc': '''This policy is active in retail mode only.
4208
4209       Determines the duration before the screen saver is shown on the sign-in screen for devices in retail mode.
4210
4211       The policy value should be specified in milliseconds.''',
4212     },
4213     {
4214       'name': 'DeviceAppPack',
4215       'type': 'list',
4216       'schema': {
4217         'type': 'array',
4218         'items': { 'type': 'string' },
4219       },
4220       'supported_on': ['chrome_os:19-'],
4221       'device_only': True,
4222       'features': {
4223         'dynamic_refresh': True,
4224       },
4225       'example_value': [ { "extension-id": "khgabmflimjjbclkmljlpmgaleanedem", "update-url": "http://clients2.google.com/service/update2/crx" } ],
4226       'id': 135,
4227       'caption': '''List of AppPack extensions''',
4228       'desc': '''This policy is active in retail mode only.
4229
4230       Lists extensions that are automatically installed for the Demo user, for devices in retail mode. These extensions are saved in the device and can be installed while offline, after the installation.
4231
4232       Each list entry contains a dictionary that must include the extension ID in the 'extension-id' field, and its update URL in the 'update-url' field.''',
4233     },
4234     {
4235       'name': 'DeviceAutoUpdateDisabled',
4236       'type': 'main',
4237       'schema': { 'type': 'boolean' },
4238       'supported_on': ['chrome_os:19-'],
4239       'device_only': True,
4240       'features': {
4241         'dynamic_refresh': True,
4242       },
4243       'example_value': True,
4244       'id': 136,
4245       'caption': '''Disables Auto Update''',
4246       'desc': '''Disables automatic updates when set to True.
4247
4248       <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> devices automatically check for updates when this setting is not configured or set to False.''',
4249     },
4250     {
4251       'name': 'DeviceAutoUpdateP2PEnabled',
4252       'type': 'main',
4253       'schema': { 'type': 'boolean' },
4254       'supported_on': ['chrome_os:31-'],
4255       'device_only': True,
4256       'features': {
4257         'dynamic_refresh': True,
4258       },
4259       'example_value': False,
4260       'id': 242,
4261       'caption': '''Auto update p2p enabled''',
4262       'desc': '''Specifies whether p2p is to be used for OS update payloads. If set to True, devices will share and attempt to consume update payloads on the LAN, potentially reducing Internet bandwidth usage and congestion. If the update payload is not available on the LAN, the device will fall back to downloading from an update server. If set to False or not configured, p2p will not be used.''',
4263     },
4264     {
4265       'name': 'DeviceTargetVersionPrefix',
4266       'type': 'string',
4267       'schema': { 'type': 'string' },
4268       'supported_on': ['chrome_os:19-'],
4269       'device_only': True,
4270       'features': {
4271         'dynamic_refresh': True,
4272       },
4273       'example_value': '1412.',
4274       'id': 142,
4275       'caption': '''Target Auto Update Version''',
4276       'desc': '''Sets a target version for Auto Updates.
4277
4278       Specifies the prefix of a target version <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> should update to. If the device is running a version that's before the specified prefix, it will update to the latest version with the given prefix. If the device is already on a later version, there is no effect (i.e. no downgrades are performed) and the device will remain on the current version. The prefix format works component-wise as is demonstrated in the following example:
4279
4280       "" (or not configured): update to latest version available.
4281       "1412.": update to any minor version of 1412 (e.g. 1412.24.34 or 1412.60.2)
4282       "1412.2.": update to any minor version of 1412.2 (e.g. 1412.2.34 or 1412.2.2)
4283       "1412.24.34": update to this specific version only''',
4284     },
4285     {
4286       'name': 'DeviceUpdateScatterFactor',
4287       'type': 'int',
4288       'schema': { 'type': 'integer' },
4289       'supported_on': ['chrome_os:20-'],
4290       'device_only': True,
4291       'features': {
4292         'dynamic_refresh': True,
4293       },
4294       'example_value': 7200,
4295       'id': 145,
4296       'caption': '''Auto update scatter factor''',
4297       'desc': '''Specifies the number of seconds up to which a device may randomly delay its download of an update from the time the update was first pushed out to the server. The device may wait a portion of this time in terms of wall-clock-time and the remaining portion in terms of the number of update checks. In any case, the scatter is upper bounded to a constant amount of time so that a device does not ever get stuck waiting to download an update forever.''',
4298     },
4299     {
4300       'name': 'DeviceUpdateAllowedConnectionTypes',
4301       'type': 'list',
4302       'schema': {
4303         'type': 'array',
4304         'items': { 'type': 'string' },
4305       },
4306       'supported_on': ['chrome_os:21-'],
4307       'device_only': True,
4308       'features': {
4309         'dynamic_refresh': True,
4310       },
4311       'example_value': [ 'ethernet' ],
4312       'id': 146,
4313       'caption': '''Connection types allowed for updates''',
4314       'desc': ''' The types of connections that are allowed to use for OS updates. OS updates potentially put heavy strain on the connection due to their size and may incur additional cost. Therefore, they are by default not enabled for connection types that are considered expensive, which include WiMax, Bluetooth and Cellular at the moment.
4315
4316       The recognized connection type identifiers are "ethernet", "wifi", "wimax", "bluetooth" and "cellular".''',
4317     },
4318     {
4319       'name': 'DeviceUpdateHttpDownloadsEnabled',
4320       'type': 'main',
4321       'schema': {
4322         'type': 'boolean',
4323       },
4324       'supported_on': ['chrome_os:29-'],
4325       'device_only': True,
4326       'features': {
4327         'dynamic_refresh': True,
4328       },
4329       'example_value': True,
4330       'id': 243,
4331       'caption': '''Allow autoupdate downloads via HTTP''',
4332       'desc': '''Auto-update payloads on <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can be downloaded via HTTP instead of HTTPS. This allows transparent HTTP caching of HTTP downloads.
4333
4334       If this policy is set to true, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will attempt to download auto-update payloads via HTTP. If the policy is set to false or not set, HTTPS will be used for downloading auto-update payloads.''',
4335     },
4336     {
4337       'name': 'DeviceLocalAccounts',
4338       'type': 'list',
4339       'schema': {
4340         'type': 'array',
4341         'items': { 'type': 'string' },
4342       },
4343       'supported_on': ['chrome_os:25-'],
4344       'device_only': True,
4345       'features': {
4346         'dynamic_refresh': True,
4347       },
4348       'example_value': [ "demo@example.com" ],
4349       'id': 163,
4350       'caption': '''Device-local accounts''',
4351       'desc': '''Specifies the list of device-local accounts to be shown on the login screen.
4352
4353       Every list entry specifies an identifier, which is used internally to tell the different device-local accounts apart.''',
4354     },
4355     {
4356       'name': 'DeviceLocalAccountAutoLoginId',
4357       'type': 'string',
4358       'schema': { 'type': 'string' },
4359       'supported_on': ['chrome_os:26-'],
4360       'device_only': True,
4361       'features': {
4362         'dynamic_refresh': True,
4363       },
4364       'example_value': "public@example.com",
4365       'id': 194,
4366       'caption': '''Public session for auto-login''',
4367       'desc': '''A public session to auto-login after a delay.
4368
4369       If this policy is set, the specified session will be automatically logged in after a period of time has elapsed at the login screen without user interaction. The public session must already be configured (see |DeviceLocalAccounts|).
4370
4371       If this policy is unset, there will be no auto-login.''',
4372     },
4373     {
4374       'name': 'DeviceLocalAccountAutoLoginDelay',
4375       'type': 'int',
4376       'schema': { 'type': 'integer' },
4377       'supported_on': ['chrome_os:26-'],
4378       'device_only': True,
4379       'features': {
4380         'dynamic_refresh': True,
4381       },
4382       'example_value': 180000,
4383       'id': 195,
4384       'caption': '''Public session auto-login timer''',
4385       'desc': '''The public session auto-login delay.
4386
4387       If the |DeviceLocalAccountAutoLoginId| policy is unset, this policy has no effect. Otherwise:
4388
4389       If this policy is set, it determines the amount of time without user activity that should elapse before automatically logging into the public session specified by the |DeviceLocalAccountAutoLoginId| policy.
4390
4391       If this policy is unset, 0 milliseconds will be used as the timeout.
4392
4393       This policy is specified in milliseconds.'''
4394     },
4395     {
4396       'name': 'DeviceLocalAccountAutoLoginBailoutEnabled',
4397       'type': 'main',
4398       'schema': { 'type': 'boolean' },
4399       'supported_on': ['chrome_os:28-'],
4400       'device_only': True,
4401       'features': {
4402         'dynamic_refresh': True,
4403       },
4404       'example_value': True,
4405       'id': 202,
4406       'caption': '''Enable bailout keyboard shortcut for auto-login''',
4407       'desc': '''Enable bailout keyboard shortcut for auto-login.
4408
4409       If this policy is unset or set to True and a device-local account is configured for zero-delay auto-login, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will honor the keyboard shortcut Ctrl+Alt+S for bypassing auto-login and showing the login screen.
4410
4411       If this policy is set to False, zero-delay auto-login (if configured) cannot be bypassed.'''
4412     },
4413     {
4414       'name': 'DeviceLocalAccountPromptForNetworkWhenOffline',
4415       'type': 'main',
4416       'schema': { 'type': 'boolean' },
4417       'supported_on': ['chrome_os:33-'],
4418       'device_only': True,
4419       'features': {
4420         'dynamic_refresh': True,
4421       },
4422       'example_value': True,
4423       'id': 250,
4424       'caption': '''Enable network configuration prompt when offline''',
4425       'desc': '''Enable network configuration prompt when offline.
4426
4427       If this policy is unset or set to True and a device-local account is configured for zero-delay auto-login and the device does not have access to the Internet, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will show a network configuration prompt.
4428
4429       If this policy is set to False, an error message will be displayed instead of the network configuration prompt.'''
4430     },
4431     {
4432       'name': 'DeviceBlockDevmode',
4433       'type': 'main',
4434       'schema': { 'type': 'boolean' },
4435       'supported_on': ['chrome_os:37-'],
4436       'device_only': True,
4437       'features': {
4438         'dynamic_refresh': True,
4439       },
4440       'example_value': True,
4441       'id': 266,
4442       'caption': '''Block developer mode''',
4443       'desc': '''Block developer mode.
4444
4445       If this policy is set to True, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will prevent the device from booting into developer mode. The system will refuse to boot and show an error screen when the developer switch is turned on.
4446
4447       If this policy is unset or set to False, developer mode will remain available for the device.'''
4448     },
4449     {
4450       'name': 'BackgroundModeEnabled',
4451       'type': 'main',
4452       'schema': { 'type': 'boolean' },
4453       'supported_on': ['chrome.win:19-', 'chrome.linux:19-'],
4454       'features': {
4455         'can_be_recommended': True,
4456         'dynamic_refresh': True,
4457         'per_profile': False,
4458       },
4459       'example_value': True,
4460       'id': 138,
4461       'caption': '''Continue running background apps when <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> is closed''',
4462       'desc': '''Determines whether a <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> process is started on OS login and keeps running when the last browser window is closed, allowing background apps to remain active. The background process displays an icon in the system tray and can always be closed from there.
4463
4464       If this policy is set to True, background mode is enabled and cannot be controlled by the user in the browser settings.
4465
4466       If this policy is set to False, background mode is disabled and cannot be controlled by the user in the browser settings.
4467
4468       If this policy is left unset, background mode is initially disabled and can be controlled by the user in the browser settings.''',
4469     },
4470     {
4471       'name': 'Drive',
4472       'type': 'group',
4473       'caption': '''Configure Google Drive options''',
4474       'desc': '''Configure Google Drive in <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph>.''',
4475       'policies': [
4476         {
4477           'name': 'DriveDisabled',
4478           'type': 'main',
4479           'schema': { 'type': 'boolean' },
4480           'supported_on': ['chrome_os:19-'],
4481           'features': {
4482             'dynamic_refresh': True,
4483             'per_profile': True,
4484           },
4485           'example_value': True,
4486           'id': 139,
4487           'caption': '''Disables Drive in the <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> Files app''',
4488           'desc': '''Disables Google Drive syncing in the <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> Files app when set to True. In that case, no data is uploaded to Google Drive.
4489
4490           If not set or set to False, then users will be able to transfer files to Google Drive.''',
4491         },
4492         {
4493           'name': 'DriveDisabledOverCellular',
4494           'type': 'main',
4495           'schema': { 'type': 'boolean' },
4496           'supported_on': ['chrome_os:19-'],
4497           'features': {
4498             'dynamic_refresh': True,
4499             'per_profile': True,
4500           },
4501           'example_value': True,
4502           'id': 140,
4503           'caption': '''Disables Google Drive over cellular connections in the <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> Files app''',
4504           'desc': '''Disables Google Drive syncing in the <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> Files app when using a cellular connection when set to True. In that case, data is only synced to Google Drive when connected via WiFi or Ethernet.
4505
4506           If not set or set to False, then users will be able to transfer files to Google Drive via cellular connections.''',
4507         },
4508       ],
4509     },
4510     {
4511       'name': 'PinnedLauncherApps',
4512       'type': 'list',
4513       'schema': {
4514         'type': 'array',
4515         'items': { 'type': 'string' },
4516       },
4517       'supported_on': ['chrome_os:20-' ],
4518       'features': {
4519         'can_be_recommended': True,
4520         'dynamic_refresh': True,
4521         'per_profile': True,
4522       },
4523       'example_value': ['pjkljhegncpnkpknbcohdijeoejaedia'],
4524       'id': 144,
4525       'caption': '''List of pinned apps to show in the launcher''',
4526       'desc': '''Lists the application identifiers <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> shows as pinned apps in the launcher bar.
4527
4528       If this policy is configured, the set of applications is fixed and can't be changed by the user.
4529
4530       If this policy is left unset, the user may change the list of pinned apps in the launcher.''',
4531     },
4532     {
4533       'name': 'RestrictSigninToPattern',
4534       'type': 'string',
4535       'schema': { 'type': 'string' },
4536       'supported_on': ['chrome.*:21-'],
4537       'features': {
4538         'dynamic_refresh': True,
4539         'per_profile': False,
4540       },
4541       'example_value': '*@domain.com',
4542       'id': 147,
4543       'caption': '''Restrict which users are allowed to sign in to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>''',
4544       'desc': '''Contains a regular expression which is used to determine which users can sign in to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
4545
4546       An appropriate error is displayed if a user tries to log in with a username that does not match this pattern.
4547
4548       If this policy is left not set or blank, then any user can sign in to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
4549     },
4550     {
4551       'name': 'DisableSafeBrowsingProceedAnyway',
4552       'type': 'main',
4553       'schema': { 'type': 'boolean' },
4554       'supported_on': ['chrome.*:22-', 'chrome_os:22-', 'android:30-'],
4555       'features': {
4556         'dynamic_refresh': True,
4557         'per_profile': True,
4558       },
4559       'example_value': True,
4560       'id': 150,
4561       'caption': '''Disable proceeding from the Safe Browsing warning page''',
4562       'desc': '''The Safe Browsing service shows a warning page when users navigate to sites that are flagged as potentially malicious. Enabling this setting prevents users from proceeding anyway from the warning page to the malicious site.
4563
4564       If this setting is disabled or not configured then users can choose to proceed to the flagged site after being shown the warning.''',
4565     },
4566     {
4567       'name': 'SpellCheckServiceEnabled',
4568       'type': 'main',
4569       'schema': { 'type': 'boolean' },
4570       'supported_on': ['chrome.*:22-', 'chrome_os:22-'],
4571       'features': {
4572         'can_be_recommended': True,
4573         'dynamic_refresh': True,
4574         'per_profile': True,
4575       },
4576       'example_value': False,
4577       'id': 151,
4578       'caption': '''Enable or disable spell checking web service''',
4579       'desc': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> can use a Google web service to help resolve spelling errors. If this setting is enabled, then this service is always used. If this setting is disabled, then this service is never used.
4580
4581       Spell checking can still be performed using a downloaded dictionary; this policy only controls the usage of the online service.
4582
4583       If this setting is not configured then users can choose whether the spell checking service should be used or not.''',
4584     },
4585     {
4586       'name': 'ExternalStorageDisabled',
4587       'type': 'main',
4588       'schema': { 'type': 'boolean' },
4589       'supported_on': ['chrome_os:22-'],
4590       'features': {
4591         'dynamic_refresh': True,
4592         'per_profile': True,
4593       },
4594       'example_value': True,
4595       'id': 152,
4596       'caption': '''Disable mounting of external storage''',
4597       'desc': '''Disable mounting of external storage.
4598
4599       When this policy is set to true, external storage will not be available in the file browser.
4600
4601       This policy affects all types of storage media. For example: USB flash drives, external hard drives, SD and other memory cards, optical storage etc. Internal storage is not affected, therefore files saved in the Download folder can still be accessed. Google Drive is also not affected by this policy.
4602
4603       If this setting is disabled or not configured then users can use all supported types of external storage on their device.''',
4604     },
4605     {
4606       'name': 'AudioOutputAllowed',
4607       'type': 'main',
4608       'schema': { 'type': 'boolean' },
4609       'supported_on': ['chrome_os:23-'],
4610       'features': {
4611         'dynamic_refresh': True,
4612         'per_profile': False,
4613       },
4614       'example_value': False,
4615       'id': 159,
4616       'caption': '''Allow playing audio''',
4617       'desc': '''Allow playing audio.
4618
4619       When this policy is set to false, audio output will not be available on the device while the user is logged in.
4620
4621       This policy affects all types of audio output and not only the built-in speakers. Audio accessibility features are also inhibited by this policy. Do not enable this policy if a screen reader is required for the user.
4622
4623       If this setting is set to true or not configured then users can use all supported audio outputs on their device.''',
4624     },
4625     {
4626       'name': 'AudioCaptureAllowed',
4627       'type': 'main',
4628       'schema': { 'type': 'boolean' },
4629       'supported_on': ['chrome.*:25-', 'chrome_os:23-'],
4630       'features': {
4631         'dynamic_refresh': True,
4632         'per_profile': False,
4633       },
4634       'example_value': False,
4635       'id': 160,
4636       'caption': '''Allow or deny audio capture''',
4637       'desc': '''Allow or deny audio capture.
4638
4639       If enabled or not configured (default), the user will be prompted for
4640       audio capture access except for URLs configured in the
4641       AudioCaptureAllowedUrls list which will be granted access without prompting.
4642
4643       When this policy is disabled, the user will never be prompted and audio
4644       capture only be available to URLs configured in AudioCaptureAllowedUrls.
4645
4646       This policy affects all types of audio inputs and not only the built-in microphone.''',
4647     },
4648     {
4649       'name': 'AudioCaptureAllowedUrls',
4650       'type': 'list',
4651       'schema': {
4652         'type': 'array',
4653         'items': { 'type': 'string' },
4654       },
4655       'supported_on': ['chrome.*:29-', 'chrome_os:29-'],
4656       'features': {
4657         'dynamic_refresh': True,
4658         'per_profile': True,
4659       },
4660       'example_value': ['http://www.example.com/', 'http://[*.]example.edu/'],
4661       'id': 208,
4662       'caption': '''URLs that will be granted access to audio capture devices without prompt''',
4663       'desc': '''Patterns in this list will be matched against the security
4664       origin of the requesting URL.  If a match is found, access to audio
4665       capture devices will be granted without prompt.
4666
4667       NOTE: This policy is currently only supported when running in Kiosk mode.''',
4668     },
4669     {
4670       'name': 'VideoCaptureAllowed',
4671       'type': 'main',
4672       'schema': { 'type': 'boolean' },
4673       'supported_on': ['chrome.*:25-', 'chrome_os:25-'],
4674       'features': {
4675         'dynamic_refresh': True,
4676         'per_profile': True,
4677       },
4678       'example_value': False,
4679       'id': 167,
4680       'caption': '''Allow or deny video capture''',
4681       'desc': '''Allow or deny video capture.
4682
4683       If enabled or not configured (default), the user will be prompted for
4684       video capture access except for URLs configured in the
4685       VideoCaptureAllowedUrls list which will be granted access without prompting.
4686
4687       When this policy is disabled, the user will never be prompted and video
4688       capture only be available to URLs configured in VideoCaptureAllowedUrls.
4689
4690       This policy affects all types of video inputs and not only the built-in camera.''',
4691     },
4692     {
4693       'name': 'VideoCaptureAllowedUrls',
4694       'type': 'list',
4695       'schema': {
4696         'type': 'array',
4697         'items': { 'type': 'string' },
4698       },
4699       'supported_on': ['chrome.*:29-', 'chrome_os:29-'],
4700       'features': {
4701         'dynamic_refresh': True,
4702         'per_profile': True,
4703       },
4704       'example_value': ['http://www.example.com/', 'http://[*.]example.edu/'],
4705       'id': 209,
4706       'caption': '''URLs that will be granted access to video capture devices without prompt''',
4707       'desc': '''Patterns in this list will be matched against the security
4708       origin of the requesting URL.  If a match is found, access to audio
4709       capture devices will be granted without prompt.
4710
4711       NOTE: This policy is currently only supported when running in Kiosk mode.''',
4712     },
4713     {
4714       'name': 'DisableScreenshots',
4715       'type': 'main',
4716       'schema': { 'type': 'boolean' },
4717       'supported_on': ['chrome_os:22-', 'chrome.*:22-'],
4718       'features': {
4719         'dynamic_refresh': True,
4720         'per_profile': False,
4721       },
4722       'example_value': True,
4723       'id': 153,
4724       'caption': '''Disable taking screenshots''',
4725       'desc': '''Disables taking screenshots.
4726
4727       If enabled screenshots cannot be taken using keyboard shortcuts or extension APIs.
4728
4729       If disabled or not specified, taking screenshots is allowed.'''
4730     },
4731     {
4732       'name': 'SystemTimezone',
4733       'type': 'string',
4734       'schema': { 'type': 'string' },
4735       'supported_on': ['chrome_os:22-'],
4736       'device_only': True,
4737       'features': {
4738         'dynamic_refresh': True,
4739       },
4740       'example_value': 'America/Los_Angeles',
4741       'id': 158,
4742       'caption': '''Timezone''',
4743       'desc': '''Specifies the timezone to be used for the device. Users can override the specified timezone for the current session. However, on logout it is set back to the specified timezone. If an invalid value is provided, the policy is still activated using "GMT" instead. If an empty string is provided, the policy is ignored.
4744
4745       If this policy is not used, the currently active timezone will remain in use however users can change the timezone and the change is persistent. Thus a change by one user affects the login-screen and all other users.
4746
4747       New devices start out with the timezone set to "US/Pacific".
4748
4749       The format of the value follows the names of timezones in the "IANA Time Zone Database" (see "http://en.wikipedia.org/wiki/List_of_tz_database_time"). In particular, most timezones can be referred to by "continent/large_city" or "ocean/large_city".''',
4750     },
4751     {
4752       'name': 'SystemUse24HourClock',
4753       'type': 'main',
4754       'schema': { 'type': 'boolean' },
4755       'supported_on': ['chrome_os:30-'],
4756       'device_only': True,
4757       'features': {
4758         'dynamic_refresh': True,
4759       },
4760       'example_value': True,
4761       'id': 236,
4762       'caption': '''Use 24 hour clock by default''',
4763       'desc': '''Specifies the clock format be used for the device.
4764
4765       This policy configures the clock format to use on the login screen and as a default for user sessions. Users can still override the clock format for their account.
4766
4767       If the policy is set to true, the device will use a 24 hour clock format. If the policy is set to false, the device will use 12 hour clock format.
4768
4769       If this policy is not set, the device will default to a 24 hour clock format.''',
4770     },
4771     {
4772       'name': 'TouchVirtualKeyboardEnabled',
4773       'type': 'main',
4774       'schema': { 'type': 'boolean' },
4775       'supported_on': ['chrome_os:37-' ],
4776       'features': {
4777         'dynamic_refresh': True,
4778         'per_profile': True
4779       },
4780       'example_value': False,
4781       'id': 269,
4782       'caption': '''Enable virtual keyboard''',
4783       'desc': '''This policy configures enabling the virtual keyboard as an input device on ChromeOS. Users cannot override this policy.
4784
4785       If the policy is set to true, the on-screen virtual keyboard will always be enabled.
4786
4787       If set to false, the on-screen virtual keyboard will always be disabled.
4788
4789       If you set this policy, users cannot change or override it. However, users will still be able to enable/disable an accessibility on-screen keyboard which takes precedence over the virtual keyboard controlled by this policy. See the |VirtualKeyboardEnabled| policy for controlling the accessibility on-screen keyboard.
4790
4791       If this policy is left unset, the on-screen keyboard is disabled initially but can be enabled by the user anytime. Heuristic rules may also be used to decide when to display the keyboard.''',
4792     },
4793     {
4794       'name': 'ShowLogoutButtonInTray',
4795       'type': 'main',
4796       'schema': { 'type': 'boolean' },
4797       'supported_on': ['chrome_os:25-'],
4798       'features': {
4799         'dynamic_refresh': True,
4800         'per_profile': True,
4801       },
4802       'example_value': True,
4803       'id': 164,
4804       'caption': '''Add a logout button to the system tray''',
4805       'desc': '''Adds a logout button to the system tray.
4806
4807       If enabled, a big, red logout button is shown in the system tray while a session is active and the screen is not locked.
4808
4809       If disabled or not specified, no big, red logout button is shown in the system tray.''',
4810     },
4811     {
4812       'name': 'BuiltInDnsClientEnabled',
4813       'type': 'main',
4814       'schema': { 'type': 'boolean' },
4815       'supported_on': ['chrome.*:25-'],
4816       'features': {
4817         'dynamic_refresh': True,
4818         'per_profile': False,
4819       },
4820       'example_value': True,
4821       'id': 165,
4822       'caption': '''Use built-in DNS client''',
4823       'desc': '''Controls whether the built-in DNS client is used in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
4824
4825       If this policy is set to true, the built-in DNS client will be used, if available.
4826
4827       If this policy is set to false, the built-in DNS client will never be used.
4828
4829       If this policy is left not set, the users will be able to change whether the built-in DNS client is used by editing chrome://flags or specifying a command-line flag.''',
4830     },
4831     {
4832       'name': 'ShelfAutoHideBehavior',
4833       'type': 'string-enum',
4834       'schema': {
4835         'type': 'string',
4836         'enum': [
4837           'Always',
4838           'Never'
4839         ],
4840       },
4841       'items': [
4842         {
4843           'name': 'AlwaysAutoHideShelf',
4844           'value': 'Always',
4845           'caption': '''Always auto-hide the shelf''',
4846         },
4847         {
4848           'name': 'NeverAutoHideShelf',
4849           'value': 'Never',
4850           'caption': '''Never auto-hide the shelf''',
4851         },
4852       ],
4853       'supported_on': ['chrome_os:25-'],
4854       'features': {
4855         'can_be_recommended': True,
4856         'dynamic_refresh': True,
4857         'per_profile': False,
4858       },
4859       'example_value': 'Always',
4860       'id': 166,
4861       'caption': '''Control shelf auto-hiding''',
4862       'desc': '''Control auto-hiding of the <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> shelf.
4863
4864       If this policy is set to 'AlwaysAutoHideShelf', the shelf will always auto-hide.
4865
4866       If this policy is set to 'NeverAutoHideShelf', the shelf never auto-hide.
4867
4868       If you set this policy, users cannot change or override it.
4869
4870       If the policy is left not set, users can choose whether the shelf should auto-hide.''',
4871     },
4872     {
4873       'name': 'UserDisplayName',
4874       'type': 'string',
4875       'schema': { 'type': 'string' },
4876       'supported_on': ['chrome_os:25-'],
4877       'features': {
4878         'dynamic_refresh': True,
4879         'per_profile': False,
4880       },
4881       'example_value': 'Policy User',
4882       'id': 169,
4883       'caption': '''Set the display name for device-local accounts''',
4884       'desc': '''Controls the account name <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> shows on the login screen for the corresponding device-local account.
4885
4886       If this policy is set, the login screen will use the specified string in the picture-based login chooser for the corresponding device-local account.
4887
4888       If the policy is left not set, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will use the device-local account's email account ID as the display name on the login screen.
4889
4890       This policy is ignored for regular user accounts.''',
4891     },
4892     {
4893       'name': 'SessionLengthLimit',
4894       'type': 'int',
4895       'schema': { 'type': 'integer' },
4896       'supported_on': ['chrome_os:25-'],
4897       'features': {
4898         'dynamic_refresh': True,
4899         'per_profile': False,
4900       },
4901       'example_value': 3600000,
4902       'id': 170,
4903       'caption': '''Limit the session length''',
4904       'desc': '''Limit the maximum length of a user session.
4905
4906       When this policy is set, it specifies the length of time after which a user is automatically logged out, terminating the session. The user is informed about the remaining time by a countdown timer shown in the system tray.
4907
4908       When this policy is not set, the session length is not limited.
4909
4910       If you set this policy, users cannot change or override it.
4911
4912       The policy value should be specified in milliseconds. Values are clamped to a range of 30 seconds to 24 hours.''',
4913     },
4914     {
4915       'name': 'FullscreenAllowed',
4916       'type': 'main',
4917       'schema': { 'type': 'boolean' },
4918       'supported_on': ['chrome.win:31-', 'chrome.linux:31-', 'chrome_os:31-'],
4919       'features': {
4920         'dynamic_refresh': True,
4921         'per_profile': True,
4922       },
4923       'example_value': True,
4924       'id': 240,
4925       'caption': '''Allow fullscreen mode''',
4926       'desc': '''Allow fullscreen mode.
4927
4928       This policy controls the availability of fullscreen mode in which all <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> UI is hidden and only web content is visible.
4929
4930       If this policy is set to true or not not configured, the user, apps and extensions with appropriate permissions can enter fullscreen mode.
4931
4932       If this policy is set to false, neither the user nor any apps or extensions can enter fullscreen mode.
4933
4934       On all platforms except <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph>, kiosk mode is unavailable when fullscreen mode is disabled.''',
4935     },
4936     {
4937       'name': 'PowerManagement',
4938       'type': 'group',
4939       'caption': '''Power management''',
4940       'desc': '''Configure power management in <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph>.
4941
4942       These policies let you configure how <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> behaves when the user remains idle for some amount of time.''',
4943       'policies': [
4944         {
4945           'name': 'ScreenDimDelayAC',
4946           'type': 'int',
4947           'schema': {
4948             'type': 'integer',
4949             'minimum': 0
4950           },
4951           'supported_on': ['chrome_os:26-'],
4952           'features': {
4953             'dynamic_refresh': True,
4954             'per_profile': False,
4955           },
4956           'deprecated': True,
4957           'example_value': 420000,
4958           'id': 172,
4959           'caption': '''Screen dim delay when running on AC power''',
4960           'desc': '''Specifies the length of time without user input after which the screen is dimmed when running on AC power.
4961
4962           When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> dims the screen.
4963
4964           When this policy is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not dim the screen when the user becomes idle.
4965
4966           When this policy is unset, a default length of time is used.
4967
4968           The policy value should be specified in milliseconds. Values are clamped to be less than or equal the screen off delay (if set) and the idle delay.''',
4969         },
4970         {
4971           'name': 'ScreenOffDelayAC',
4972           'type': 'int',
4973           'schema': {
4974             'type': 'integer',
4975             'minimum': 0
4976           },
4977           'supported_on': ['chrome_os:26-'],
4978           'features': {
4979             'dynamic_refresh': True,
4980             'per_profile': False,
4981           },
4982           'deprecated': True,
4983           'example_value': 480000,
4984           'id': 173,
4985           'caption': '''Screen off delay when running on AC power''',
4986           'desc': '''Specifies the length of time without user input after which the screen is turned off when running on AC power.
4987
4988           When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> turns off the screen.
4989
4990           When this policy is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not turn off the screen when the user becomes idle.
4991
4992           When this policy is unset, a default length of time is used.
4993
4994           The policy value should be specified in milliseconds. Values are clamped to be less than or equal the idle delay.''',
4995         },
4996         {
4997           'name': 'ScreenLockDelayAC',
4998           'type': 'int',
4999           'schema': {
5000             'type': 'integer',
5001             'minimum': 0
5002           },
5003           'supported_on': ['chrome_os:26-'],
5004           'features': {
5005             'dynamic_refresh': True,
5006             'per_profile': False,
5007           },
5008           'deprecated': True,
5009           'example_value': 600000,
5010           'id': 174,
5011           'caption': '''Screen lock delay when running on AC power''',
5012           'desc': '''Specifies the length of time without user input after which the screen is locked when running on AC power.
5013
5014           When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> locks the screen.
5015
5016           When this policy is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not lock the screen when the user becomes idle.
5017
5018           When this policy is unset, a default length of time is used.
5019
5020           The recommended way to lock the screen on idle is to enable screen locking on suspend and have <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> suspend after the idle delay. This policy should only be used when screen locking should occur a significant amount of time sooner than suspend or when suspend on idle is not desired at all.
5021
5022           The policy value should be specified in milliseconds. Values are clamped to be less than the idle delay.''',
5023         },
5024         {
5025           'name': 'IdleWarningDelayAC',
5026           'type': 'int',
5027           'schema': {
5028             'type': 'integer',
5029             'minimum': 0
5030           },
5031           'supported_on': ['chrome_os:27-'],
5032           'features': {
5033             'dynamic_refresh': True,
5034             'per_profile': False,
5035           },
5036           'deprecated': True,
5037           'example_value': 545000,
5038           'id': 197,
5039           'caption': '''Idle warning delay when running on AC power''',
5040           'desc': '''Specifies the length of time without user input after which a warning dialog is shown when running on AC power.
5041
5042           When this policy is set, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> shows a warning dialog telling the user that the idle action is about to be taken.
5043
5044           When this policy is unset, no warning dialog is shown.
5045
5046           The policy value should be specified in milliseconds. Values are clamped to be less than or equal the idle delay.''',
5047         },
5048         {
5049           'name': 'IdleDelayAC',
5050           'type': 'int',
5051           'schema': {
5052             'type': 'integer',
5053             'minimum': 0
5054           },
5055           'supported_on': ['chrome_os:26-'],
5056           'features': {
5057             'dynamic_refresh': True,
5058             'per_profile': False,
5059           },
5060           'deprecated': True,
5061           'example_value': 1800000,
5062           'id': 175,
5063           'caption': '''Idle delay when running on AC power''',
5064           'desc': '''Specifies the length of time without user input after which the idle action is taken when running on AC power.
5065
5066           When this policy is set, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> takes the idle action, which can be configured separately.
5067
5068           When this policy is unset, a default length of time is used.
5069
5070           The policy value should be specified in milliseconds.''',
5071         },
5072         {
5073           'name': 'ScreenDimDelayBattery',
5074           'type': 'int',
5075           'schema': {
5076             'type': 'integer',
5077             'minimum': 0
5078           },
5079           'supported_on': ['chrome_os:26-'],
5080           'features': {
5081             'dynamic_refresh': True,
5082             'per_profile': False,
5083           },
5084           'deprecated': True,
5085           'example_value': 300000,
5086           'id': 176,
5087           'caption': '''Screen dim delay when running on battery power''',
5088           'desc': '''Specifies the length of time without user input after which the screen is dimmed when running on battery power.
5089
5090           When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> dims the screen.
5091
5092           When this policy is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not dim the screen when the user becomes idle.
5093
5094           When this policy is unset, a default length of time is used.
5095
5096           The policy value should be specified in milliseconds. Values are clamped to be less than or equal the screen off delay (if set) and the idle delay.''',
5097         },
5098         {
5099           'name': 'ScreenOffDelayBattery',
5100           'type': 'int',
5101           'schema': {
5102             'type': 'integer',
5103             'minimum': 0
5104           },
5105           'supported_on': ['chrome_os:26-'],
5106           'features': {
5107             'dynamic_refresh': True,
5108             'per_profile': False,
5109           },
5110           'deprecated': True,
5111           'example_value': 360000,
5112           'id': 177,
5113           'caption': '''Screen off delay when running on battery power''',
5114           'desc': '''Specifies the length of time without user input after which the screen is turned off when running on battery power.
5115
5116           When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> turns off the screen.
5117
5118           When this policy is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not turn off the screen when the user becomes idle.
5119
5120           When this policy is unset, a default length of time is used.
5121
5122           The policy value should be specified in milliseconds. Values are clamped to be less than or equal the idle delay.''',
5123         },
5124         {
5125           'name': 'ScreenLockDelayBattery',
5126           'type': 'int',
5127           'schema': {
5128             'type': 'integer',
5129             'minimum': 0
5130           },
5131           'supported_on': ['chrome_os:26-'],
5132           'features': {
5133             'dynamic_refresh': True,
5134             'per_profile': False,
5135           },
5136           'deprecated': True,
5137           'example_value': 600000,
5138           'id': 178,
5139           'caption': '''Screen lock delay when running on battery power''',
5140           'desc': '''Specifies the length of time without user input after which the screen is locked when running on battery power.
5141
5142           When this policy is set to a value greater than zero, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> locks the screen.
5143
5144           When this policy is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not lock the screen when the user becomes idle.
5145
5146           When this policy is unset, a default length of time is used.
5147
5148           The recommended way to lock the screen on idle is to enable screen locking on suspend and have <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> suspend after the idle delay. This policy should only be used when screen locking should occur a significant amount of time sooner than suspend or when suspend on idle is not desired at all.
5149
5150           The policy value should be specified in milliseconds. Values are clamped to be less than the idle delay.''',
5151         },
5152         {
5153           'name': 'IdleWarningDelayBattery',
5154           'type': 'int',
5155           'schema': {
5156             'type': 'integer',
5157             'minimum': 0
5158           },
5159           'supported_on': ['chrome_os:27-'],
5160           'features': {
5161             'dynamic_refresh': True,
5162             'per_profile': False,
5163           },
5164           'deprecated': True,
5165           'example_value': 545000,
5166           'id': 198,
5167           'caption': '''Idle warning delay when running on battery power''',
5168           'desc': '''Specifies the length of time without user input after which a warning dialog is shown when running on battery power.
5169
5170           When this policy is set, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> shows a warning dialog telling the user that the idle action is about to be taken.
5171
5172           When this policy is unset, no warning dialog is shown.
5173
5174           The policy value should be specified in milliseconds. Values are clamped to be less than or equal the idle delay.''',
5175         },
5176         {
5177           'name': 'IdleDelayBattery',
5178           'type': 'int',
5179           'schema': {
5180             'type': 'integer',
5181             'minimum': 0
5182           },
5183           'supported_on': ['chrome_os:26-'],
5184           'features': {
5185             'dynamic_refresh': True,
5186             'per_profile': False,
5187           },
5188           'deprecated': True,
5189           'example_value': 600000,
5190           'id': 179,
5191           'caption': '''Idle delay when running on battery power''',
5192           'desc': '''Specifies the length of time without user input after which the idle action is taken when running on battery power.
5193
5194           When this policy is set, it specifies the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> takes the idle action, which can be configured separately.
5195
5196           When this policy is unset, a default length of time is used.
5197
5198           The policy value should be specified in milliseconds.''',
5199         },
5200         {
5201           'name': 'IdleAction',
5202           'type': 'int-enum',
5203           'schema': {
5204             'type': 'integer',
5205             'enum': [ 0, 1, 2, 3 ],
5206           },
5207           'items': [
5208             {
5209               'name': 'IdleActionSuspend',
5210               'value': 0,
5211               'caption': '''Suspend''',
5212             },
5213             {
5214               'name': 'IdleActionLogout',
5215               'value': 1,
5216               'caption': '''Log the user out''',
5217             },
5218             {
5219               'name': 'IdleActionShutdown',
5220               'value': 2,
5221               'caption': '''Shut down''',
5222             },
5223             {
5224               'name': 'IdleActionDoNothing',
5225               'value': 3,
5226               'caption': '''Do nothing''',
5227             },
5228           ],
5229           'supported_on': ['chrome_os:26-'],
5230           'features': {
5231             'dynamic_refresh': True,
5232             'per_profile': False,
5233           },
5234           'deprecated': True,
5235           'example_value': 0,
5236           'id': 180,
5237           'caption': '''Action to take when the idle delay is reached''',
5238           'desc': '''Specify the action to take when the idle delay is reached.
5239
5240           Note that this policy is deprecated and will be removed in the future.
5241
5242           This policy provides a fallback value for the more-specific <ph name="IDLEACTIONAC_POLICY_NAME">IdleActionAC</ph> and <ph name="IDLEACTIONBATTERY_POLICY_NAME">IdleActionBattery</ph> policies. If this policy is set, its value gets used if the respective more-specific policy is not set.
5243
5244           When this policy is unset, behavior of the more-specific policies remains unaffected.''',
5245         },
5246         {
5247           'name': 'IdleActionAC',
5248           'type': 'int-enum',
5249           'schema': {
5250             'type': 'integer',
5251             'enum': [ 0, 1, 2, 3 ],
5252           },
5253           'items': [
5254             {
5255               'name': 'IdleActionSuspend',
5256               'value': 0,
5257               'caption': '''Suspend''',
5258             },
5259             {
5260               'name': 'IdleActionLogout',
5261               'value': 1,
5262               'caption': '''Log the user out''',
5263             },
5264             {
5265               'name': 'IdleActionShutdown',
5266               'value': 2,
5267               'caption': '''Shut down''',
5268             },
5269             {
5270               'name': 'IdleActionDoNothing',
5271               'value': 3,
5272               'caption': '''Do nothing''',
5273             },
5274           ],
5275           'supported_on': ['chrome_os:30-'],
5276           'features': {
5277             'dynamic_refresh': True,
5278             'per_profile': False,
5279           },
5280           'deprecated': True,
5281           'example_value': 0,
5282           'id': 226,
5283           'caption': '''Action to take when the idle delay is reached while running on AC power''',
5284           'desc': '''Specify the action to take when the idle delay is reached while running on AC power.
5285
5286           When this policy is set, it specifies the action that <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> takes when the user remains idle for the length of time given by the idle delay, which can be configured separately.
5287
5288           When this policy is unset, the default action is taken, which is suspend.
5289
5290           If the action is suspend, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can separately be configured to either lock or not lock the screen before suspending.''',
5291         },
5292         {
5293           'name': 'IdleActionBattery',
5294           'type': 'int-enum',
5295           'schema': {
5296             'type': 'integer',
5297             'enum': [ 0, 1, 2, 3 ],
5298           },
5299           'items': [
5300             {
5301               'name': 'IdleActionSuspend',
5302               'value': 0,
5303               'caption': '''Suspend''',
5304             },
5305             {
5306               'name': 'IdleActionLogout',
5307               'value': 1,
5308               'caption': '''Log the user out''',
5309             },
5310             {
5311               'name': 'IdleActionShutdown',
5312               'value': 2,
5313               'caption': '''Shut down''',
5314             },
5315             {
5316               'name': 'IdleActionDoNothing',
5317               'value': 3,
5318               'caption': '''Do nothing''',
5319             },
5320           ],
5321           'supported_on': ['chrome_os:30-'],
5322           'features': {
5323             'dynamic_refresh': True,
5324             'per_profile': False,
5325           },
5326           'deprecated': True,
5327           'example_value': 0,
5328           'id': 222,
5329           'caption': '''Action to take when the idle delay is reached while running on battery power''',
5330           'desc': '''Specify the action to take when the idle delay is reached while running on battery power.
5331
5332           When this policy is set, it specifies the action that <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> takes when the user remains idle for the length of time given by the idle delay, which can be configured separately.
5333
5334           When this policy is unset, the default action is taken, which is suspend.
5335
5336           If the action is suspend, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can separately be configured to either lock or not lock the screen before suspending.''',
5337         },
5338         {
5339           'name': 'LidCloseAction',
5340           'type': 'int-enum',
5341           'schema': {
5342             'type': 'integer',
5343             'enum': [ 0, 1, 2, 3 ],
5344           },
5345           'items': [
5346             {
5347               'name': 'LidCloseActionSuspend',
5348               'value': 0,
5349               'caption': '''Suspend''',
5350             },
5351             {
5352               'name': 'LidCloseActionLogout',
5353               'value': 1,
5354               'caption': '''Log the user out''',
5355             },
5356             {
5357               'name': 'LidCloseActionShutdown',
5358               'value': 2,
5359               'caption': '''Shut down''',
5360             },
5361             {
5362               'name': 'LidCloseActionDoNothing',
5363               'value': 3,
5364               'caption': '''Do nothing''',
5365             },
5366           ],
5367           'supported_on': ['chrome_os:26-'],
5368           'features': {
5369             'dynamic_refresh': True,
5370             'per_profile': False,
5371           },
5372           'example_value': 0,
5373           'id': 181,
5374           'caption': '''Action to take when the user closes the lid''',
5375           'desc': '''Specify the action to take when the user closes the lid.
5376
5377           When this policy is set, it specifies the action that <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> takes when the user closes the device's lid.
5378
5379           When this policy is unset, the default action is taken, which is suspend.
5380
5381           If the action is suspend, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can separately be configured to either lock or not lock the screen before suspending.''',
5382         },
5383         {
5384           'name': 'PowerManagementUsesAudioActivity',
5385           'type': 'main',
5386           'schema': { 'type': 'boolean' },
5387           'supported_on': ['chrome_os:26-'],
5388           'features': {
5389             'dynamic_refresh': True,
5390             'per_profile': False,
5391           },
5392           'example_value': True,
5393           'id': 182,
5394           'caption': '''Specify whether audio activity affects power management''',
5395           'desc': '''Specifies whether audio activity affects power management.
5396
5397           If this policy is set to True or is unset, the user is not considered to be idle while audio is playing. This prevents the idle timeout from being reached and the idle action from being taken. However, screen dimming, screen off and screen lock will be performed after the configured timeouts, irrespective of audio activity.
5398
5399           If this policy is set to False, audio activity does not prevent the user from being considered idle.''',
5400         },
5401         {
5402           'name': 'PowerManagementUsesVideoActivity',
5403           'type': 'main',
5404           'schema': { 'type': 'boolean' },
5405           'supported_on': ['chrome_os:26-'],
5406           'features': {
5407             'dynamic_refresh': True,
5408             'per_profile': False,
5409           },
5410           'example_value': True,
5411           'id': 183,
5412           'caption': '''Specify whether video activity affects power management''',
5413           'desc': '''Specifies whether video activity affects power management.
5414
5415           If this policy is set to True or is unset, the user is not considered to be idle while video is playing. This prevents the idle delay, screen dim delay, screen off delay and screen lock delay from being reached and the corresponding actions from being taken.
5416
5417           If this policy is set to False, video activity does not prevent the user from being considered idle.''',
5418         },
5419         {
5420           'name': 'PresentationIdleDelayScale',
5421           'type': 'int',
5422           'schema': { 'type': 'integer' },
5423           'supported_on': ['chrome_os:26-28'],
5424           'features': {
5425             'dynamic_refresh': True,
5426             'per_profile': False,
5427           },
5428           'deprecated': True,
5429           'example_value': 200,
5430           'id': 184,
5431           'caption': '''Percentage by which to scale the idle delay in presentation mode (deprecated)''',
5432           'desc': '''This policy has been retired as of <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> version 29. Please use the PresentationScreenDimDelayScale policy instead.''',
5433         },
5434         {
5435           'name': 'PresentationScreenDimDelayScale',
5436           'type': 'int',
5437           'schema': { 'type': 'integer' },
5438           'supported_on': ['chrome_os:29-'],
5439           'features': {
5440             'dynamic_refresh': True,
5441             'per_profile': False,
5442           },
5443           'example_value': 200,
5444           'id': 220,
5445           'caption': '''Percentage by which to scale the screen dim delay in presentation mode''',
5446           'desc': '''Specifies the percentage by which the screen dim delay is scaled when the device is in presentation mode.
5447
5448           If this policy is set, it specifies the percentage by which the screen dim delay is scaled when the device is in presentation mode. When the screen dim delay is scaled, the screen off, screen lock and idle delays get adjusted to maintain the same distances from the screen dim delay as originally configured.
5449
5450           If this policy is unset, a default scale factor is used.
5451
5452           The scale factor must be 100% or more. Values that would make the screen dim delay in presentation mode shorter than the regular screen dim delay are not allowed.''',
5453         },
5454         {
5455           'name': 'AllowScreenWakeLocks',
5456           'type': 'main',
5457           'schema': { 'type': 'boolean' },
5458           'supported_on': ['chrome_os:28-'],
5459           'features': {
5460             'dynamic_refresh': True,
5461             'per_profile': False,
5462           },
5463           'example_value': False,
5464           'id': 203,
5465           'caption': '''Allow screen wake locks''',
5466           'desc': '''Specifies whether screen wake locks are allowed. Screen wake locks can be requested by extensions via the power management extension API.
5467
5468           If this policy is set to true or left not set, screen wake locks will be honored for power management.
5469
5470           If this policy is set to false, screen wake lock requests will get ignored.''',
5471         },
5472         {
5473           'name': 'UserActivityScreenDimDelayScale',
5474           'type': 'int',
5475           'schema': { 'type': 'integer' },
5476           'supported_on': ['chrome_os:29-'],
5477           'features': {
5478             'dynamic_refresh': True,
5479             'per_profile': False,
5480           },
5481           'example_value': 200,
5482           'id': 210,
5483           'caption': '''Percentage by which to scale the screen dim delay if the user becomes active after dimming''',
5484           'desc': '''Specifies the percentage by which the screen dim delay is scaled when user activity is observed while the screen is dimmed or soon after the screen has been turned off.
5485
5486           If this policy is set, it specifies the percentage by which the screen dim delay is scaled when user activity is observed while the screen is dimmed or soon after the screen has been turned off. When the dim delay is scaled, the screen off, screen lock and idle delays get adjusted to maintain the same distances from the screen dim delay as originally configured.
5487
5488           If this policy is unset, a default scale factor is used.
5489
5490           The scale factor must be 100% or more.''',
5491         },
5492         {
5493           'name': 'WaitForInitialUserActivity',
5494           'type': 'main',
5495           'schema': { 'type': 'boolean' },
5496           'supported_on': ['chrome_os:32-'],
5497           'features': {
5498             'dynamic_refresh': True,
5499             'per_profile': False,
5500           },
5501           'example_value': True,
5502           'id': 247,
5503           'caption': '''Wait for initial user activity''',
5504           'desc': '''Specifies whether power management delays and the session length limit should only start running after the first user activity has been observed in a session.
5505
5506           If this policy is set to True, power management delays and the session length limit do not start running until after the first user activity has been observed in a session.
5507
5508           If this policy is set to False or left unset, power management delays and the session length limit start running immediately on session start.''',
5509         },
5510         {
5511           'name': 'PowerManagementIdleSettings',
5512           'type': 'dict',
5513           'schema': {
5514             'type': 'object',
5515             'properties': {
5516               'AC': {
5517                 'description': 'Delays and actions to take when the device is idle and running on AC power',
5518                 'type': 'object',
5519                 'id': 'PowerManagementDelays',
5520                 'properties': {
5521                   'Delays': {
5522                     'type': 'object',
5523                     'properties': {
5524                       'ScreenDim': {
5525                         'description': 'The length of time without user input after which the screen is dimmed, in milliseconds',
5526                         'type': 'integer',
5527                         'minimum': 0
5528                       },
5529                       'ScreenOff': {
5530                         'description': 'The length of time without user input after which the screen is turned off, in milliseconds',
5531                         'type': 'integer',
5532                         'minimum': 0
5533                       },
5534                       'IdleWarning': {
5535                         'description': 'The length of time without user input after which a warning dialog is shown, in milliseconds',
5536                         'type': 'integer',
5537                         'minimum': 0
5538                       },
5539                       'Idle': {
5540                         'description': 'The length of time without user input after which the idle action is taken, in milliseconds',
5541                         'type': 'integer',
5542                         'minimum': 0
5543                       }
5544                     }
5545                   },
5546                   'IdleAction': {
5547                     'description': 'Action to take when the idle delay is reached',
5548                     'type': 'string',
5549                     'enum': [ 'Suspend', 'Logout', 'Shutdown', 'DoNothing' ]
5550                   }
5551                 }
5552               },
5553               'Battery': {
5554                 'description': 'Delays and actions to take when the device is idle and running on battery',
5555                 '$ref': 'PowerManagementDelays'
5556               }
5557             }
5558           },
5559           'supported_on': ['chrome_os:35-'],
5560           'features': {
5561             'dynamic_refresh': True,
5562             'per_profile': False,
5563           },
5564           'example_value': {
5565             'AC': {
5566               'IdleAction': 'DoNothing'
5567             },
5568             'Battery': {
5569               'IdleAction': 'DoNothing'
5570             }
5571           },
5572           'id': 258,
5573           'caption': '''Power management settings when the user becomes idle''',
5574           'desc': '''Configure power management settings when the user becomes idle.
5575
5576           This policy controls multiple settings for the power management strategy when the user becomes idle.
5577
5578           There are four types of action:
5579           * The screen will be dimmed if the user remains idle for the time specified by |ScreenDim|.
5580           * The screen will be turned off if the user remains idle for the time specified by |ScreenOff|.
5581           * A warning dialog will be shown if the user remains idle for the time specified by |IdleWarning|, telling the user that the idle action is about to be taken.
5582           * The action specified by |IdleAction| will be taken if the user remains idle for the time specified by |Idle|.
5583
5584           For each of above actions, the delay should be specified in milliseconds, and needs to be set to a value greater than zero to trigger the corresponding action. In case the delay is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will not take the corresponding action.
5585
5586           For each of the above delays, when the length of time is unset, a default value will be used.
5587
5588           Note that |ScreenDim| values will be clamped to be less than or equal to |ScreenOff|, |ScreenOff| and |IdleWarning| will be clamped to be less than or equal to |Idle|.
5589
5590           |IdleAction| can be one of four possible actions:
5591           * |Suspend|
5592           * |Logout|
5593           * |Shutdown|
5594           * |DoNothing|
5595
5596           When the |IdleAction| is unset, the default action is taken, which is suspend.
5597
5598           There are also separate settings for AC power and battery.
5599           '''
5600         },
5601         {
5602           'name': 'ScreenLockDelays',
5603           'type': 'dict',
5604           'schema': {
5605             'type': 'object',
5606             'properties': {
5607               'AC': {
5608                 'description': 'The length of time without user input after which the screen is locked when running on AC power, in milliseconds',
5609                 'type': 'integer',
5610                 'minimum': 0
5611               },
5612               'Battery': {
5613                 'description': 'The length of time without user input after which the screen is locked when running on battery, in milliseconds',
5614                 'type': 'integer',
5615                 'minimum': 0
5616               }
5617             }
5618           },
5619           'supported_on': ['chrome_os:35-'],
5620           'features': {
5621             'dynamic_refresh': True,
5622             'per_profile': False,
5623           },
5624           'example_value': {
5625             'AC': 600000,
5626             'Battery': 300000
5627           },
5628           'id': 259,
5629           'caption': '''Screen lock delays''',
5630           'desc': '''Specifies the length of time without user input after which the screen is locked when running on AC power or battery.
5631
5632           When the length of time is set to a value greater than zero, it represents the length of time that the user must remain idle before <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> locks the screen.
5633
5634           When the length of time is set to zero, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> does not lock the screen when the user becomes idle.
5635
5636           When the length of time is unset, a default length of time is used.
5637
5638           The recommended way to lock the screen on idle is to enable screen locking on suspend and have <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> suspend after the idle delay. This policy should only be used when screen locking should occur a significant amount of time sooner than suspend or when suspend on idle is not desired at all.
5639
5640           The policy value should be specified in milliseconds. Values are clamped to be less than the idle delay.''',
5641         },
5642       ],
5643     },
5644     {
5645       'name': 'DeviceLoginScreenPowerManagement',
5646       'type': 'dict',
5647       'schema': {
5648         'type': 'object',
5649         'properties': {
5650           'AC': {
5651             'description': 'Power management settings applicable only when running on AC power',
5652             'type': 'object',
5653             'id': 'DeviceLoginScreenPowerSettings',
5654             'properties': {
5655               'Delays': {
5656                 'type': 'object',
5657                 'properties': {
5658                   'ScreenDim': {
5659                     'description': 'The length of time without user input after which the screen is dimmed, in milliseconds',
5660                     'type': 'integer',
5661                     'minimum': 0
5662                   },
5663                   'ScreenOff': {
5664                     'description': 'The length of time without user input after which the screen is turned off, in milliseconds',
5665                     'type': 'integer',
5666                     'minimum': 0
5667                   },
5668                   'Idle': {
5669                     'description': 'The length of time without user input after which the idle action is taken, in milliseconds',
5670                     'type': 'integer',
5671                     'minimum': 0
5672                   }
5673                 }
5674               },
5675               'IdleAction': {
5676                 'description': 'Action to take when the idle delay is reached',
5677                 'type': 'string',
5678                 'enum': [ 'Suspend', 'Shutdown', 'DoNothing' ]
5679               }
5680             }
5681           },
5682           'Battery': {
5683             'description': 'Power management settings applicable only when running on battery power',
5684             '$ref': 'DeviceLoginScreenPowerSettings'
5685           },
5686           'LidCloseAction': {
5687             'description': 'Action to take when the lid is closed',
5688             'type': 'string',
5689             'enum': [ 'Suspend', 'Shutdown', 'DoNothing' ]
5690           },
5691           'UserActivityScreenDimDelayScale': {
5692             'description': 'Percentage by which the screen dim delay is scaled when user activity is observed while the screen is dimmed or soon after the screen has been turned off',
5693             'type': 'integer',
5694             'minimum': 100
5695           }
5696         }
5697       },
5698       'supported_on': ['chrome_os:30-'],
5699       'device_only': True,
5700       'features': {
5701         'dynamic_refresh': True,
5702       },
5703       'example_value': {
5704         'AC': {
5705           'IdleAction': 'DoNothing'
5706         },
5707         'Battery': {
5708           'IdleAction': 'DoNothing'
5709         }
5710       },
5711       'id': 225,
5712       'caption': '''Power management on the login screen''',
5713       'desc': '''Configure power management on the login screen in <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph>.
5714
5715       This policy lets you configure how <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> behaves when there is no user activity for some amount of time while the login screen is being shown. The policy controls multiple settings. For their individual semantics and value ranges, see the corresponding policies that control power management within a session. The only deviations from these policies are:
5716       * The actions to take on idle or lid close cannot be to end the session.
5717       * The default action taken on idle when running on AC power is to shut down.
5718
5719       If a setting is left unspecified, a default value is used.
5720
5721       If this policy is unset, defaults are used for all settings.''',
5722     },
5723     {
5724       'name': 'DeviceAllowRedeemChromeOsRegistrationOffers',
5725       'type': 'main',
5726       'schema': { 'type': 'boolean' },
5727       'supported_on': ['chrome_os:26-'],
5728       'device_only': True,
5729       'features': {
5730         'dynamic_refresh': True,
5731       },
5732       'example_value': True,
5733       'id': 185,
5734       'caption': '''Allow users to redeem offers through Chrome OS Registration''',
5735       'desc': '''IT admins for enterprise devices can use this flag to control whether to allow users to redeem offers through Chrome OS Registration.
5736
5737       If this policy is set to true or left not set, users will be able to redeem offers through Chrome OS Registration.
5738
5739       If this policy is set to false, user will not be able to redeem offers.''',
5740     },
5741     {
5742       'name': 'TermsOfServiceURL',
5743       'type': 'string',
5744       'schema': { 'type': 'string' },
5745       'supported_on': ['chrome_os:26-'],
5746       'features': {
5747         'dynamic_refresh': True,
5748         'per_profile': False,
5749       },
5750       'example_value': 'http://www.example.com/terms_of_service.txt',
5751       'id': 186,
5752       'caption': '''Set the Terms of Service for a device-local account''',
5753       'desc': '''Sets the Terms of Service that the user must accept before starting a device-local account session.
5754
5755       If this policy is set, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will download the Terms of Service and present them to the user whenever a device-local account session is starting. The user will only be allowed into the session after accepting the Terms of Service.
5756
5757       If this policy is not set, no Terms of Service are shown.
5758
5759       The policy should be set to a URL from which <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can download the Terms of Service. The Terms of Service must be plain text, served as MIME type text/plain. No markup is allowed.''',
5760     },
5761     {
5762       'name': 'Accessibility',
5763       'type': 'group',
5764       'caption': '''Accessibility settings''',
5765       'desc': '''Configure <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> accessibility features.''',
5766       'policies': [
5767         {
5768           'name': 'ShowAccessibilityOptionsInSystemTrayMenu',
5769           'type': 'main',
5770           'schema': { 'type': 'boolean' },
5771           'supported_on': ['chrome_os:27-'],
5772           'features': {
5773             'can_be_recommended': True,
5774             'dynamic_refresh': True,
5775             'per_profile': True,
5776           },
5777           'example_value': True,
5778           'id': 188,
5779           'caption': '''Show accessibility options in system tray menu''',
5780           'desc': '''Show <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> accessibility options in the system menu.
5781
5782           If this policy is set to true, Accessibility options always appear in system tray menu.
5783
5784           If this policy is set to false, Accessibility options never appear in system tray menu.
5785
5786           If you set this policy, users cannot change or override it.
5787
5788           If this policy is left unset, Accessibility options will not appear in the system tray menu, but the user can cause the Accessibility options to appear via the Settings page.'''
5789         },
5790         {
5791           'name': 'LargeCursorEnabled',
5792           'type': 'main',
5793           'schema': { 'type': 'boolean' },
5794           'supported_on': ['chrome_os:29-'],
5795           'features': {
5796             'can_be_recommended': True,
5797             'dynamic_refresh': True,
5798             'per_profile': True,
5799           },
5800           'example_value': True,
5801           'id': 211,
5802           'caption': '''Enable large cursor''',
5803           'desc': '''Enable the large cursor accessibility feature.
5804
5805           If this policy is set to true, the large cursor will always be enabled.
5806
5807           If this policy is set to false, the large cursor will always be disabled.
5808
5809           If you set this policy, users cannot change or override it.
5810
5811           If this policy is left unset, the large cursor is disabled initially but can be enabled by the user anytime.'''
5812         },
5813         {
5814           'name': 'SpokenFeedbackEnabled',
5815           'type': 'main',
5816           'schema': { 'type': 'boolean' },
5817           'supported_on': ['chrome_os:29-'],
5818           'features': {
5819             'can_be_recommended': True,
5820             'dynamic_refresh': True,
5821             'per_profile': True,
5822           },
5823           'example_value': True,
5824           'id': 212,
5825           'caption': '''Enable spoken feedback''',
5826           'desc': '''Enable the spoken feedback accessibility feature.
5827
5828           If this policy is set to true, spoken feedback will always be enabled.
5829
5830           If this policy is set to false, spoken feedback will always be disabled.
5831
5832           If you set this policy, users cannot change or override it.
5833
5834           If this policy is left unset, spoken feedback is disabled initially but can be enabled by the user anytime.'''
5835         },
5836         {
5837           'name': 'HighContrastEnabled',
5838           'type': 'main',
5839           'schema': { 'type': 'boolean' },
5840           'supported_on': ['chrome_os:29-'],
5841           'features': {
5842             'can_be_recommended': True,
5843             'dynamic_refresh': True,
5844             'per_profile': True,
5845           },
5846           'example_value': True,
5847           'id': 213,
5848           'caption': '''Enable high contrast mode''',
5849           'desc': '''Enable the high contrast mode accessibility feature.
5850
5851           If this policy is set to true, high contrast mode will always be enabled.
5852
5853           If this policy is set to false, high contrast mode will always be disabled.
5854
5855           If you set this policy, users cannot change or override it.
5856
5857           If this policy is left unset, high contrast mode is disabled initially but can be enabled by the user anytime.'''
5858         },
5859         {
5860           'name': 'VirtualKeyboardEnabled',
5861           'type': 'main',
5862           'schema': { 'type': 'boolean' },
5863           'supported_on': ['chrome_os:34-'],
5864           'features': {
5865             'can_be_recommended': True,
5866             'dynamic_refresh': True,
5867             'per_profile': True,
5868           },
5869           'example_value': True,
5870           'id': 255,
5871           'caption': '''Enable on-screen keyboard''',
5872           'desc': '''Enable the on-screen keyboard accessibility feature.
5873
5874           If this policy is set to true, the on-screen keyboard will always be enabled.
5875
5876           If this policy is set to false, the on-screen keyboard will always be disabled.
5877
5878           If you set this policy, users cannot change or override it.
5879
5880           If this policy is left unset, the on-screen keyboard is disabled initially but can be enabled by the user anytime.'''
5881         },
5882         {
5883           'name': 'KeyboardDefaultToFunctionKeys',
5884           'type': 'main',
5885           'schema': { 'type': 'boolean' },
5886           'supported_on': ['chrome_os:35-'],
5887           'features': {
5888             'can_be_recommended': True,
5889             'dynamic_refresh': True,
5890             'per_profile': True,
5891           },
5892           'example_value': True,
5893           'id': 260,
5894           'caption': '''Media keys default to function keys''',
5895           'desc': '''Changes the default behaviour of the top row keys to function keys.
5896
5897           If this policy is set to true, the keyboard's top row of keys will produce function key commands per default. The search key has to be pressed to revert their behavior back to media keys.
5898
5899           If this policy is set to false or left unset, the keyboard will produce media key commands per default and function key commands when the search key is held.'''
5900         },
5901         {
5902           'name': 'ScreenMagnifierType',
5903           'type': 'int-enum',
5904           'schema': {
5905             'type': 'integer',
5906             'enum': [ 0, 1 ],
5907           },
5908           'items': [
5909             {
5910               'name': 'None',
5911               'value': 0,
5912               'caption': '''Screen magnifier disabled''',
5913             },
5914             {
5915               'name': 'Full-screen',
5916               'value': 1,
5917               'caption': '''Full-screen magnifier enabled''',
5918             },
5919           ],
5920           'supported_on': ['chrome_os:29-'],
5921           'features': {
5922             'can_be_recommended': True,
5923             'dynamic_refresh': True,
5924             'per_profile': True,
5925           },
5926           'example_value': 1,
5927           'id': 214,
5928           'caption': '''Set screen magnifier type''',
5929           'desc': '''Set the type of screen magnifier that is enabled.
5930
5931           If this policy is set, it controls the type of screen magnifier that is enabled. Setting the policy to "None" disables the screen magnifier.
5932
5933           If you set this policy, users cannot change or override it.
5934
5935           If this policy is left unset, the screen magnifier is disabled initially but can be enabled by the user anytime.''',
5936         },
5937         {
5938           'name': 'DeviceLoginScreenDefaultLargeCursorEnabled',
5939           'type': 'main',
5940           'schema': { 'type': 'boolean' },
5941           'supported_on': ['chrome_os:29-'],
5942           'device_only': True,
5943           'features': {
5944             'dynamic_refresh': True,
5945           },
5946           'example_value': True,
5947           'id': 215,
5948           'caption': '''Set default state of the large cursor on the login screen''',
5949           'desc': '''Set the default state of the large cursor accessibility feature on the login screen.
5950
5951           If this policy is set to true, the large cursor will be enabled when the login screen is shown.
5952
5953           If this policy is set to false, the large cursor will be disabled when the login screen is shown.
5954
5955           If you set this policy, users can temporarily override it by enabling or disabling the large cursor. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
5956
5957           If this policy is left unset, the large cursor is disabled when the login screen is first shown. Users can enable or disable the large cursor anytime and its status on the login screen is persisted between users.''',
5958         },
5959         {
5960           'name': 'DeviceLoginScreenDefaultSpokenFeedbackEnabled',
5961           'type': 'main',
5962           'schema': { 'type': 'boolean' },
5963           'supported_on': ['chrome_os:29-'],
5964           'device_only': True,
5965           'features': {
5966             'dynamic_refresh': True,
5967           },
5968           'example_value': True,
5969           'id': 216,
5970           'caption': '''Set the default state of spoken feedback on the login screen''',
5971           'desc': '''Set the default state of the spoken feedback accessibility feature on the login screen.
5972
5973           If this policy is set to true, spoken feedback will be enabled when the login screen is shown.
5974
5975           If this policy is set to false, spoken feedback will be disabled when the login screen is shown.
5976
5977           If you set this policy, users can temporarily override it by enabling or disabling spoken feedback. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
5978
5979           If this policy is left unset, spoken feedback is disabled when the login screen is first shown. Users can enable or disable spoken feedback anytime and its status on the login screen is persisted between users.''',
5980         },
5981         {
5982           'name': 'DeviceLoginScreenDefaultHighContrastEnabled',
5983           'type': 'main',
5984           'schema': { 'type': 'boolean' },
5985           'supported_on': ['chrome_os:29-'],
5986           'device_only': True,
5987           'features': {
5988             'dynamic_refresh': True,
5989           },
5990           'example_value': True,
5991           'id': 217,
5992           'caption': '''Set the default state of high contrast mode on the login screen''',
5993           'desc': '''Set the default state of the high contrast mode accessibility feature on the login screen.
5994
5995           If this policy is set to true, high contrast mode will be enabled when the login screen is shown.
5996
5997           If this policy is set to false, high contrast mode will be disabled when the login screen is shown.
5998
5999           If you set this policy, users can temporarily override it by enabling or disabling high contrast mode. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
6000
6001           If this policy is left unset, high contrast mode is disabled when the login screen is first shown. Users can enable or disable high contrast mode anytime and its status on the login screen is persisted between users.''',
6002         },
6003         {
6004           'name': 'DeviceLoginScreenDefaultVirtualKeyboardEnabled',
6005           'type': 'main',
6006           'schema': { 'type': 'boolean' },
6007           'supported_on': ['chrome_os:34-'],
6008           'device_only': True,
6009           'features': {
6010             'dynamic_refresh': True,
6011           },
6012           'example_value': True,
6013           'id': 256,
6014           'caption': '''Set default state of the on-screen keyboard on the login screen''',
6015           'desc': '''Set the default state of the on-screen keyboard accessibility feature on the login screen.
6016
6017           If this policy is set to true, the on-screen keyboard will be enabled when the login screen is shown.
6018
6019           If this policy is set to false, the on-screen keyboard will be disabled when the login screen is shown.
6020
6021           If you set this policy, users can temporarily override it by enabling or disabling the on-screen keyboard. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
6022
6023           If this policy is left unset, the on-screen keyboard is disabled when the login screen is first shown. Users can enable or disable the on-screen keyboard anytime and its status on the login screen is persisted between users.''',
6024         },
6025         {
6026           'name': 'DeviceLoginScreenDefaultScreenMagnifierType',
6027           'type': 'int-enum',
6028           'schema': {
6029             'type': 'integer',
6030             'enum': [ 0, 1 ],
6031           },
6032           'items': [
6033             {
6034               'name': 'None',
6035               'value': 0,
6036               'caption': '''Screen magnifier disabled''',
6037             },
6038             {
6039               'name': 'Full-screen',
6040               'value': 1,
6041               'caption': '''Full-screen magnifier enabled''',
6042             },
6043           ],
6044           'supported_on': ['chrome_os:29-'],
6045           'device_only': True,
6046           'features': {
6047             'dynamic_refresh': True,
6048           },
6049           'example_value': 1,
6050           'id': 218,
6051           'caption': '''Set the default screen magnifier type enabled on the login screen''',
6052           'desc': '''Set the default type of screen magnifier that is enabled on the login screen.
6053
6054           If this policy is set, it controls the type of screen magnifier that is enabled when the login screen is shown. Setting the policy to "None" disables the screen magnifier.
6055
6056           If you set this policy, users can temporarily override it by enabling or disabling the screen magnifier. However, the user's choice is not persistent and the default is restored whenever the login screen is shown anew or the user remains idle on the login screen for a minute.
6057
6058           If this policy is left unset, the screen magnifier is disabled when the login screen is first shown. Users can enable or disable the screen magnifier anytime and its status on the login screen is persisted between users.''',
6059         },
6060       ],
6061     },
6062     {
6063       'name': 'HideWebStoreIcon',
6064       'type': 'main',
6065       'schema': { 'type': 'boolean' },
6066       'supported_on': ['chrome.*:26-'],
6067       'features': {
6068         'dynamic_refresh': True,
6069         'per_profile': True,
6070       },
6071       'example_value': True,
6072       'id': 189,
6073       'caption': '''Hide the web store from the New Tab Page and app launcher''',
6074       'desc': '''Hide the Chrome Web Store app and footer link from the New Tab Page and <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> app launcher.
6075
6076       When this policy is set to true, the icons are hidden.
6077
6078       When this policy is set to false or is not configured, the icons are visible.''',
6079     },
6080     {
6081       'name': 'DeviceStartUpFlags',
6082       'type': 'list',
6083       'schema': {
6084         'type': 'array',
6085         'items': { 'type': 'string' },
6086       },
6087       'supported_on': ['chrome_os:27-'],
6088       'device_only': True,
6089       'features': {
6090         'dynamic_refresh': False,
6091       },
6092       'example_value': [ "enable-managed-mode", "my-cool-flag" ],
6093       'id': 191,
6094       'caption': '''System wide flags to be applied on <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> start-up''',
6095       'desc': '''Specifies the flags that should be applied to <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> when it starts. The specified flags are applied before <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> is started even for the sign-in screen.''',
6096     },
6097     {
6098       'name': 'UptimeLimit',
6099       'type': 'int',
6100       'schema': { 'type': 'integer' },
6101       'supported_on': ['chrome_os:29-'],
6102       'device_only': True,
6103       'features': {
6104         'dynamic_refresh': True,
6105       },
6106       'example_value': 86400,
6107       'id': 192,
6108       'caption': '''Limit device uptime by automatically rebooting''',
6109       'desc': '''Limit the device uptime by scheduling automatic reboots.
6110
6111       When this policy is set, it specifies the length of device uptime after which an automatic reboot is scheduled.
6112
6113       When this policy is not set, the device uptime is not limited.
6114
6115       If you set this policy, users cannot change or override it.
6116
6117       An automatic reboot is scheduled at the selected time but may be delayed on the device by up to 24 hours if a user is currently using the device.
6118
6119       Note: Currently, automatic reboots are only enabled while the login screen is being shown or a kiosk app session is in progress. This will change in the future and the policy will always apply, regardless of whether a session of any particular type is in progress or not.
6120
6121       The policy value should be specified in seconds. Values are clamped to be at least 3600 (one hour).''',
6122     },
6123     {
6124       'name': 'RebootAfterUpdate',
6125       'type': 'main',
6126       'schema': { 'type': 'boolean' },
6127       'supported_on': ['chrome_os:29-'],
6128       'device_only': True,
6129       'features': {
6130         'dynamic_refresh': True,
6131       },
6132       'example_value': True,
6133       'id': 193,
6134       'caption': '''Automatically reboot after update''',
6135       'desc': '''Schedule an automatic reboot after a <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> update has been applied.
6136
6137       When this policy is set to true, an automatic reboot is scheduled when a <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> update has been applied and a reboot is required to complete the update process. The reboot is scheduled immediately but may be delayed on the device by up to 24 hours if a user is currently using the device.
6138
6139       When this policy is set to false, no automatic reboot is scheduled after applying a <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> update. The update process is completed when the user next reboots the device.
6140
6141       If you set this policy, users cannot change or override it.
6142
6143       Note: Currently, automatic reboots are only enabled while the login screen is being shown or a kiosk app session is in progress. This will change in the future and the policy will always apply, regardless of whether a session of any particular type is in progress or not.''',
6144     },
6145     {
6146       'name': 'VariationsRestrictParameter',
6147       'type': 'string',
6148       'schema': { 'type': 'string' },
6149       'supported_on': ['chrome.*:27-', 'android:34-', 'ios:35-'],
6150       'features': {
6151         'dynamic_refresh': False,
6152         'per_profile': False,
6153       },
6154       'example_value': 'restricted',
6155       'id': 196,
6156       'future': True,
6157       'caption': '''Set the restriction on the fetching of the Variations seed''',
6158       'desc': '''Add a parameter to the fetching of the Variations seed in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
6159
6160       If specified, will add a query parameter called 'restrict' to the URL used to fetch the Variations seed. The value of the parameter will be the value specified in this policy.
6161
6162       If not specified, will not modify the Variations seed URL.''',
6163     },
6164     {
6165       'name': 'DeviceVariationsRestrictParameter',
6166       'type': 'string',
6167       'schema': { 'type': 'string' },
6168       'supported_on': ['chrome_os:28-'],
6169       'features': {
6170         'dynamic_refresh': False,
6171       },
6172       'device_only': True,
6173       'example_value': 'restricted',
6174       'id': 199,
6175       'future': True,
6176       'caption': '''Set the restriction on the fetching of the Variations seed''',
6177       'desc': '''Add a parameter to the fetching of the Variations seed in <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph>.
6178
6179       If specified, will add a query parameter called 'restrict' to the URL used to fetch the Variations seed. The value of the parameter will be the value specified in this policy.
6180
6181       If not specified, will not modify the Variations seed URL.''',
6182     },
6183     {
6184       'name': 'Attestation',
6185       'type': 'group',
6186       'caption': 'Remote Attestation',
6187       'desc': 'Configure the remote attestation with TPM mechanism.',
6188       'policies': [
6189         {
6190           'name': 'AttestationEnabledForDevice',
6191           'type': 'main',
6192           'schema': { 'type': 'boolean' },
6193           'supported_on': ['chrome_os:28-'],
6194           'features': {
6195             'dynamic_refresh': True,
6196           },
6197           'device_only': True,
6198           'example_value': True,
6199           'id': 207,
6200           'caption': '''Enable remote attestation for the device''',
6201           'desc': '''If true, remote attestation is allowed for the device and a certificate will automatically be generated and uploaded to the Device Management Server.
6202
6203           If it is set to false, or if it is not set, no certificate will be generated and calls to the enterprise.platformKeysPrivate extension API will fail.''',
6204         },
6205         {
6206           'name': 'AttestationEnabledForUser',
6207           'type': 'main',
6208           'schema': { 'type': 'boolean' },
6209           'supported_on': ['chrome_os:28-'],
6210           'features': {
6211             'dynamic_refresh': True,
6212             'per_profile': True,
6213           },
6214           'example_value': True,
6215           'id': 200,
6216           'caption': '''Enable remote attestation for the user''',
6217           'desc': '''If true, the user can use the hardware on Chrome devices to remote attest its identity to the privacy CA via the Enterprise Platform Keys API chrome.enterprise.platformKeysPrivate.challengeUserKey().
6218
6219           If it is set to false, or if it is not set, calls to the API will fail with an error code.''',
6220         },
6221         {
6222           'name': 'AttestationExtensionWhitelist',
6223           'type': 'list',
6224           'schema': {
6225             'type': 'array',
6226             'items': { 'type': 'string' },
6227           },
6228           'supported_on': ['chrome_os:28-'],
6229           'features': {
6230             'dynamic_refresh': True,
6231             'per_profile': True,
6232           },
6233           'example_value': ['ghdilpkmfbfdnomkmaiogjhjnggaggoi'],
6234           'id': 201,
6235           'caption': '''Extensions allowed to to use the remote attestation API''',
6236           'desc': '''This policy specifies the allowed extensions to use Enterprise Platform Keys API chrome.enterprise.platformKeysPrivate.challengeUserKey() for remote attestation. Extensions must be added to this list to use the API.
6237
6238           If an extension is not in the list, or the list is not set, the call to the API will fail with an error code.''',
6239         },
6240         {
6241           'name': 'AttestationForContentProtectionEnabled',
6242           'type': 'main',
6243           'schema': { 'type': 'boolean' },
6244           'supported_on': ['chrome_os:31-'],
6245           'features': {
6246             'dynamic_refresh': True,
6247           },
6248           'device_only': True,
6249           'example_value': True,
6250           'id': 239,
6251           'caption': '''Enable the use of remote attestation for content protection for the device''',
6252           'desc': '''Chrome OS devices can use remote attestation (Verified Access) to get a certificate issued by the Chrome OS CA that asserts the device is eligible to play protected content.  This process involves sending hardware endorsement information to the Chrome OS CA which uniquely identifies the device.
6253
6254           If this setting is false, the device will not use remote attestation for content protection and the device may be unable to play protected content.
6255
6256           If this setting is true, or if it is not set, remote attestation may be used for content protection.''',
6257         },
6258       ],
6259     },
6260     {
6261       'name': 'SuppressChromeFrameTurndownPrompt',
6262       'caption': '''Suppress the <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> turndown prompt''',
6263       'desc': '''Suppresses the turndown prompt that appears when a site is rendered by <ph name="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph>.''',
6264       'type': 'main',
6265       'schema': { 'type': 'boolean' },
6266       'supported_on': ['chrome_frame:29-32'],
6267       'features': {
6268         'dynamic_refresh': False,
6269       },
6270       'example_value': True,
6271       'id': 221,
6272     },
6273     {
6274       'name': 'LocallyManagedUsers',
6275       'type': 'group',
6276       'caption': '''Locally managed users settings''',
6277       'desc': '''Configure settings for managed users.''',
6278       'policies': [
6279         {
6280           'name': 'ContentPackDefaultFilteringBehavior',
6281           'future': True,
6282           'deprecated': True,
6283           'type': 'int-enum',
6284           'schema': {
6285             'type': 'integer',
6286             'enum': [ 0, 1, 2 ],
6287           },
6288           'items': [
6289             {
6290               'name': 'Allow',
6291               'value': 0,
6292               'caption': '''Allow access to sites outside of content packs''',
6293             },
6294             {
6295               'name': 'Warn',
6296               'value': 1,
6297               'caption': '''Warn when visiting sites outside of content packs''',
6298             },
6299             {
6300               'name': 'Block',
6301               'value': 2,
6302               'caption': '''Block access to sites outside of content packs''',
6303             },
6304           ],
6305           'supported_on': ['chrome.*:28-', 'chrome_os:28-'],
6306           'features': {
6307             'dynamic_refresh': True,
6308             'per_profile': True
6309           },
6310           'example_value': 2,
6311           'id': 204,
6312           'caption': '''Default behavior for sites not in any content pack''',
6313           'desc': '''The default behavior for sites not in any content pack.
6314
6315           This policy is for internal use by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> itself.''',
6316         },
6317         {
6318           'name': 'ContentPackManualBehaviorHosts',
6319           'future': True,
6320           'deprecated': True,
6321           'type': 'dict',
6322           'schema': {
6323             'type': 'object',
6324             'additionalProperties': {
6325               'type': 'boolean'
6326             }
6327           },
6328           'supported_on': ['chrome.*:28-', 'chrome_os:28-'],
6329           'features': {
6330             'dynamic_refresh': True,
6331             'per_profile': True
6332           },
6333           'example_value': {
6334             'www.example.com': True,
6335             'moose.org': False
6336           },
6337           'id': 205,
6338           'caption': '''Managed user manual exception hosts''',
6339           'desc': '''A dictionary mapping hostnames to a boolean flag specifying whether access to the host should be allowed (true) or blocked (false).
6340
6341           This policy is for internal use by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> itself.''',
6342         },
6343         {
6344           'name': 'ContentPackManualBehaviorURLs',
6345           'future': True,
6346           'deprecated': True,
6347           'type': 'dict',
6348           'schema': {
6349             'type': 'object',
6350             'additionalProperties': {
6351               'type': 'boolean'
6352             }
6353           },
6354           'supported_on': ['chrome.*:28-', 'chrome_os:28-'],
6355           'features': {
6356             'dynamic_refresh': True,
6357             'per_profile': True
6358           },
6359           'example_value': {
6360             'https://www.example.com': True,
6361             'http://moose.org': False
6362           },
6363           'id': 206,
6364           'caption': '''Managed user manual exception URLs''',
6365           'desc': '''A dictionary mapping URLs to a boolean flag specifying whether access to the host should be allowed (true) or blocked (false).
6366
6367           This policy is for internal use by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> itself.''',
6368         },
6369         {
6370           'name': 'SupervisedUsersEnabled',
6371           'type': 'main',
6372           'schema': { 'type': 'boolean' },
6373           'supported_on': ['chrome_os:29-'],
6374           'device_only': True,
6375           'features': {
6376             'dynamic_refresh': False,
6377           },
6378           'example_value': True,
6379           'id': 219,
6380           'caption': '''Enable supervised users''',
6381           'desc': '''If set to true, supervised users can be created and used.
6382
6383           If set to false or not configured, supervised-user creation and login will be disabled. All existing supervised users will be hidden.
6384
6385           NOTE: The default behavior for consumer and enterprise devices differs: on consumer devices supervised users are enabled by default, but on enterprise devices they are disabled by default.'''
6386         },
6387         {
6388           'name': 'SupervisedUserCreationEnabled',
6389           'type': 'main',
6390           'schema': { 'type': 'boolean' },
6391           'supported_on': ['chrome.*:29-'],
6392           'features': {
6393             'dynamic_refresh': True,
6394             'per_profile': True,
6395           },
6396           'example_value': True,
6397           'id': 223,
6398           'caption': '''Enable creation of supervised users''',
6399           'desc': '''If set to false, supervised-user creation by this user will be disabled. Any existing supervised users will still be available.
6400
6401           If set to true or not configured, supervised users can be created and managed by this user.'''
6402         },
6403       ],
6404     },
6405     {
6406       'name': 'ManagedBookmarks',
6407       'type': 'dict',
6408       'schema': {
6409         'type': 'array',
6410         'items': {
6411           'type': 'object',
6412           'id': 'BookmarkType',
6413           'properties': {
6414             'name': { 'type': 'string' },
6415             'url': { 'type': 'string' },
6416             'children': {
6417               'type': 'array',
6418               'items': { '$ref': 'BookmarkType' },
6419             },
6420           },
6421         },
6422       },
6423       'supported_on': [
6424         'android:30-',
6425         'ios:35-',
6426         'chrome.*:37-',
6427         'chrome_os:37-',
6428       ],
6429       'features': {
6430         'dynamic_refresh': True,
6431         'per_profile': True,
6432       },
6433       'example_value': [
6434         {
6435           "name": "Google",
6436           "url": "google.com"
6437         }, {
6438           "name": "Youtube",
6439           "url": "youtube.com"
6440         }
6441       ],
6442       'id': 227,
6443       'caption': '''Managed Bookmarks''',
6444       'desc': '''Configures a list of managed bookmarks.
6445
6446       The policy is a list of bookmarks, and each bookmark is a dictionary containing the bookmark "name" and target "url".
6447
6448       A bookmark can also be configured as a folder. In that case, define the folder "name" but don't define an "url"; instead, define the folder contents as another list of bookmarks under the "children" key.
6449
6450       These bookmarks are placed in a Managed bookmarks folder inside the Mobile bookmarks. These bookmarks can't be modified by the user.
6451
6452       When this policy is set then the Managed bookmarks are the default folder opened when the bookmarks view is opened in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
6453
6454       Managed bookmarks are not synced to the user account.''',
6455     },
6456     {
6457       'name': 'DataCompressionProxyEnabled',
6458       'type': 'main',
6459       'schema': { 'type': 'boolean' },
6460       'supported_on': ['android:31-'],
6461       'features': {
6462         'dynamic_refresh': True,
6463         'per_profile': True,
6464       },
6465       'example_value': True,
6466       'id': 241,
6467       'caption': '''Enable the data compression proxy feature''',
6468       'desc': '''Enable or disable the data compression proxy and prevents users from changing this setting.
6469
6470       If you enable or disable this setting, users cannot change or override this setting.
6471
6472       If this policy is left not set, the data compression proxy feature will be available for the user to choose whether to use it or not.''',
6473     },
6474     {
6475       'name': 'UserAvatarImage',
6476       'type': 'external',
6477       'schema': {
6478         'type': 'object',
6479         'properties': {
6480           'url': { "type": "string" },
6481           'hash': { "type": "string" }
6482         },
6483       },
6484       'supported_on': ['chrome_os:34-'],
6485       'features': {
6486         'dynamic_refresh': True,
6487         'per_profile': True,
6488       },
6489       'example_value': { "url": "http://example.com/avatar.jpg", "hash": "deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef" },
6490       'max_size': 524288,
6491       'id': 249,
6492       'caption': '''User avatar image''',
6493       'desc': '''Configure user avatar image.
6494
6495       This policy allows you to configure the avatar image representing the user on the login screen. The policy is set by specifying the URL from which <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can download the avatar image and a cryptographic hash used to verify the integrity of the download. The image must be in JPEG format, its size must not exceed 512kB. The URL must be accessible without any authentication.
6496
6497       The avatar image is downloaded and cached. It will be re-downloaded whenever the URL or the hash changes.
6498
6499       The policy should be specified as a string that expresses the URL and hash in JSON format, conforming to the following schema:
6500       {
6501         "type": "object",
6502         "properties": {
6503           "url": {
6504             "description": "The URL from which the avatar image can be downloaded.",
6505             "type": "string"
6506           },
6507           "hash": {
6508             "description": "The SHA-256 hash of the avatar image.",
6509             "type": "string"
6510           }
6511         }
6512       }
6513
6514       If this policy is set, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will download and use the avatar image.
6515
6516       If you set this policy, users cannot change or override it.
6517
6518       If the policy is left not set, the user can choose the avatar image representing him/her on the login screen.''',
6519     },
6520     {
6521       'name': 'WallpaperImage',
6522       'type': 'external',
6523       'schema': {
6524         'type': 'object',
6525         'properties': {
6526           'url': { "type": "string" },
6527           'hash': { "type": "string" }
6528         },
6529       },
6530       'supported_on': ['chrome_os:35-'],
6531       'features': {
6532         'dynamic_refresh': True,
6533         'per_profile': True,
6534       },
6535       'example_value': { "url": "http://example.com/wallpaper.jpg", "hash": "baddecafbaddecafbaddecafbaddecafbaddecafbaddecafbaddecafbaddecaf" },
6536       'max_size': 16777216,
6537       'id': 262,
6538       'caption': '''Wallpaper image''',
6539       'desc': '''Configure wallpaper image.
6540
6541       This policy allows you to configure the wallpaper image that is shown on the desktop and on the login screen background for the user. The policy is set by specifying the URL from which <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> can download the wallpaper image and a cryptographic hash used to verify the integrity of the download. The image must be in JPEG format, its file size must not exceed 16MB and its dimension must not exceed 32 megapixels. The URL must be accessible without any authentication.
6542
6543       The wallpaper image is downloaded and cached. It will be re-downloaded whenever the URL or the hash changes.
6544
6545       The policy should be specified as a string that expresses the URL and hash in JSON format, conforming to the following schema:
6546       {
6547         "type": "object",
6548         "properties": {
6549           "url": {
6550             "description": "The URL from which the wallpaper image can be downloaded.",
6551             "type": "string"
6552           },
6553           "hash": {
6554             "description": "The SHA-256 hash of the wallpaper image.",
6555             "type": "string"
6556           }
6557         }
6558       }
6559
6560       If this policy is set, <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> will download and use the wallpaper image.
6561
6562       If you set this policy, users cannot change or override it.
6563
6564       If the policy is left not set, the user can choose an image to be shown on the desktop and on the login screen background.''',
6565     },
6566     {
6567       'name': 'EnableDeprecatedWebPlatformFeatures',
6568       'type': 'string-enum-list',
6569       'schema': {
6570         'type': 'array',
6571         'items': {
6572           'type': 'string',
6573           'enum': [
6574             'ShowModalDialog_EffectiveUntil20150430'
6575           ],
6576         },
6577       },
6578       'items': [
6579         {
6580           'name': 'ShowModalDialog',
6581           'value': 'ShowModalDialog_EffectiveUntil20150430',
6582           'caption': '''Enable ShowModalDialog API through 2015.04.30''',
6583         }
6584       ],
6585       'supported_on': ['chrome.*:37-', 'chrome_os:37-', 'android:37-'],
6586       'features': {
6587         'dynamic_refresh': True,
6588         'per_profile': True,
6589       },
6590       'example_value': ['ShowModalDialog_EffectiveUntil20150430'],
6591       'id': 270,
6592       'caption': '''Enable deprecated web platform features for a limited time''',
6593       'desc': '''Specify a list of deprecated web platform features to re-enable temporarily.
6594
6595       This policy gives administrators the ability to re-enable deprecated web platform features for a limited time. Features are identified by a string tag and the features corresponding to the tags included in the list specified by this policy will get re-enabled.
6596
6597       If this policy is left not set, or the list is empty or does not match one of the supported string tags, all deprecated web platform features will remain disabled.
6598
6599       While the policy itself is supported on the above platforms, the feature it is enabling may be available on fewer platforms. Not all deprecated Web Platform features can be re-enabled. Only the ones explicitly listed below can be for a limited period of time, which is different per feature. The general format of the string tag will be [DeprecatedFeatureName]_EffectiveUntil[yyyymmdd]. As reference, you can find the intent behind the Web Platform feature changes at http://bit.ly/blinkintents.
6600       ''',
6601     },
6602     {
6603       'name': 'DeviceTransferSAMLCookies',
6604       'type': 'main',
6605       'schema': { 'type': 'boolean' },
6606       'supported_on': ['chrome_os:38-'],
6607       'device_only': True,
6608       'features': {
6609         'dynamic_refresh': True,
6610       },
6611       'example_value': True,
6612       'id': 271,
6613       'caption': '''Transfer SAML IdP cookies during login''',
6614       'desc': '''Specifies whether authentication cookies set by a SAML IdP during login should be transferred to the user's profile.
6615
6616       When a user authenticates via a SAML IdP during login, cookies set by the IdP are written to a temporary profile at first. These cookies can be transferred to the user's profile to carry forward the authentication state.
6617
6618       When this policy is set to true, cookies set by the IdP are transferred to the user's profile every time he/she authenticates against the SAML IdP during login.
6619
6620       When this policy is set to false or unset, cookies set by the IdP are transferred to the user's profile during his/her first login on a device only.
6621
6622       This policy affects users whose domain matches the device's enrollment domain only. For all other users, cookies set by the IdP are transferred to the user's profile during his/her first login on the device only.''',
6623     },
6624     {
6625       'name': 'EasyUnlockAllowed',
6626       'type': 'main',
6627       'schema': { 'type': 'boolean' },
6628       'supported_on': ['chrome_os:38-'],
6629       'features': {
6630         'dynamic_refresh': True,
6631         'per_profile': True,
6632       },
6633       'example_value': True,
6634       'default_for_enterprise_users': False,
6635       'id': 272,
6636       'caption': '''Allows EasyUnlock to be used''',
6637       'desc': '''Allows EasyUnlock to be used on <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> devices.
6638
6639       If you enable this setting, users will be allowed to use EasyUnlock if the requirements for the feature are satified.
6640
6641       If you disable this setting, users will not be allowed to use EasyUnlock.
6642
6643       If this policy is left not set, the default is not allowed for enterprise-managed users and allowed for non-managed users.''',
6644     },
6645     {
6646       'name': 'SessionLocales',
6647       'type': 'list',
6648       'schema': {
6649         'type': 'array',
6650         'items': { 'type': 'string' },
6651       },
6652       'supported_on': ['chrome_os:38-'],
6653       'features': {
6654         'can_be_recommended': True,
6655         'dynamic_refresh': True,
6656         'per_profile': True,
6657       },
6658       'example_value': ['de', 'fr'],
6659       'id': 274,
6660       'caption': '''Set the recommended locales for a public session''',
6661       'desc': '''Sets one or more recommended locales for a public sessions, allowing users to easily choose one of these locales.
6662
6663       The user can choose a locale and a keyboard layout before starting a public session. By default, all locales supported by <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> are listed in alphabetic order. You can use this policy to move a set of recommended locales to the top of the list.
6664
6665       If this policy is not set, the current UI locale will be pre-selected.
6666
6667       If this policy is set, the recommended locales will be moved to the top of the list and will be visually separated from all other locales. The recommended locales will be listed in the order in which they appear in the policy. The first recommended locale will be pre-selected.
6668
6669       If there is more than one recommended locale, it is assumed that users will want to select among these locales. Locale and keyboard layout selection will be prominently offered when starting a public session. Otherwise, it is assumed that most users will want to use the pre-selected locale. Locale and keyboard layout selection will be less prominently offered when starting a public session.
6670
6671       When this policy is set and automatic login is enabled (see the |DeviceLocalAccountAutoLoginId| and |DeviceLocalAccountAutoLoginDelay| policies), the automatically started public session will use the first recommended locale and the most popular keyboard layout matching this locale.
6672
6673       The pre-selected keyboard layout will always be the most popular layout matching the pre-selected locale.
6674
6675       This policy can only be set as recommended. You can use this policy to move a set of recommended locales to the top but users are always allowed to choose any locale supported by <ph name="PRODUCT_OS_NAME">$2<ex>Google Chrome OS</ex></ph> for their session.
6676       ''',
6677     },
6678     {
6679       'name': 'BrowserGuestModeEnabled',
6680       'type': 'main',
6681       'schema': { 'type': 'boolean' },
6682       'supported_on': ['chrome.*:38-'],
6683       'features': {
6684         'dynamic_refresh': True,
6685         'per_profile': False,
6686       },
6687       'example_value': True,
6688       'id': 275,
6689       'caption': '''Enable guest mode in browser''',
6690       'desc': '''If this policy is set to true or not configured, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will enable guest logins. Guest logins are <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> profiles where all windows are in incognito mode.
6691
6692       If this policy is set to false, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will not allow guest profiles to be started.''',
6693     },
6694     {
6695       'name': 'BrowserAddPersonEnabled',
6696       'type': 'main',
6697       'schema': { 'type': 'boolean' },
6698       'supported_on': ['chrome.*:39-'],
6699       'features': {
6700         'dynamic_refresh': True,
6701         'per_profile': False,
6702       },
6703       'example_value': True,
6704       'id': 276,
6705       'caption': '''Enable add person in profile manager''',
6706       'desc': '''If this policy is set to true or not configured, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will allow Add Person from the user manager.
6707
6708       If this policy is set to false, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will not allow creation of new profiles from the profile manager.''',
6709     },
6710   ],
6711   'messages': {
6712     # Messages that are not associated to any policies.
6713     'win_supported_winxpsp2': {
6714       'desc': '''A label specifying the oldest possible compatible version of Windows. This text will appear right next to a label containing the text 'Supported on:'.''',
6715       'text': '''Microsoft Windows XP SP2 or later'''
6716     },
6717     'mac_chrome_preferences': {
6718       'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chromium are being edited''',
6719       'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferences'''
6720     },
6721     'doc_data_type': {
6722       'desc': '''Caption text of the field 'data type' in the summary chart of a policy in the generated documentation''',
6723       'text': '''Data type:'''
6724     },
6725     'doc_win_reg_loc': {
6726       'desc': '''Caption text of the field 'windows registry location' in the summary chart of a policy in the generated documentation''',
6727       'text': '''Windows registry location:'''
6728     },
6729     'doc_mac_linux_pref_name': {
6730       'desc': '''Caption text of the field 'mac/linux preference name' in the summary chart of a policy in the generated documentation''',
6731       'text': '''Mac/Linux preference name:'''
6732     },
6733     'doc_supported_on': {
6734       'desc': '''Caption text of the list of 'products, platforms and versions where this policy is supported' in the summary chart of a policy in the generated documentation''',
6735       'text': '''Supported on:'''
6736     },
6737     'doc_since_version': {
6738       'desc': '''Text in the summary chart of a policy that specifies the version number in which the policy was introduced.''',
6739       'text': '''since version <ph name="SINCE_VERSION">$6<ex>8</ex></ph>'''
6740     },
6741     'doc_until_version': {
6742       'desc': '''Text in the summary chart of a policy that specifies the version number after which the policy was dropped.''',
6743       'text': '''until version <ph name="UNTIL_VERSION">$6<ex>10</ex></ph>'''
6744     },
6745     'doc_supported_features': {
6746       'desc': '''Caption text of the list of 'policy features that this policy supports' in the summary chart of a policy in the generated documentation''',
6747       'text': '''Supported features:'''
6748     },
6749     'doc_description': {
6750       'desc': '''Caption text of the 'description text' in the summary chart of a policy in the generated documentation''',
6751       'text': '''Description:'''
6752     },
6753     'doc_example_value': {
6754       'desc': '''Caption text of the field 'example value' in the summary chart of a policy in the generated documentation''',
6755       'text': '''Example value:'''
6756     },
6757     'doc_intro': {
6758       'desc': '''Introduction text for the generated policy documentation''',
6759       'text': '''Both Chromium and Google Chrome support the same set of
6760       policies. Please note that this document may include policies that are
6761       targeted for unreleased software versions (i.e. their 'supported on' entry
6762       refers to an unreleased version) and that such policies are subject to
6763       change or removal without prior notice.
6764
6765       These policies are strictly intended to be used to configure instances of
6766       <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> internal to your
6767       organization. Use of these policies outside of your organization (for
6768       example, in a publicly distributed program) is considered malware and will
6769       likely be labeled as malware by Google and anti-virus vendors.
6770
6771       These settings don't need to be configured manually!  Easy-to-use
6772       templates for Windows, Mac and Linux are available for download from <ph
6773       name="POLICY_TEMPLATE_DOWNLOAD_URL">http://www.chromium.org/administrators/policy-templates<ex>
6774       http://www.chromium.org/administrators/policy-templates</ex></ph>.
6775
6776       Note: Starting with <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>
6777       28, policies are loaded directly from the Group Policy API on
6778       Windows. Policies manually written to the registry will be ignored. See
6779       http://crbug.com/259236 for details.
6780
6781       Starting with <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> 35, policies are read directly from the registry if the workstation is joined to an Active Directory domain; otherwise the policies are read from GPO.'''
6782     },
6783     'doc_back_to_top': {
6784       'desc': '''Text of a link in the generated policy documentation, that takes the user to the top of the page''',
6785       'text': '''Back to top'''
6786     },
6787     'doc_supported': {
6788       'desc': '''Appears next to the name of each supported feature in the 'list of supported policy features' in the generated policy documentation''',
6789       'text': '''Yes'''
6790     },
6791     'doc_not_supported': {
6792       'desc': '''Appears next to the name of each unsupported feature in the 'list of supported policy features' in the generated policy documentation''',
6793       'text': '''No'''
6794     },
6795     'doc_name_column_title': {
6796       'desc': '''Appears at the top of the policy summary table, over the column of policy names, in the generated policy documentation''',
6797       'text': '''Policy Name'''
6798     },
6799     'doc_description_column_title': {
6800       'desc': '''Appears at the top of the policy summary table, over the column of short policy descriptions, in the generated policy documentation''',
6801       'text': '''Description'''
6802     },
6803     'doc_feature_dynamic_refresh': {
6804       'desc': '''The name of the feature that indicates for a given policy that changes to it are respected by Chromium without a browser restart''',
6805       'text': '''Dynamic Policy Refresh'''
6806     },
6807     'doc_feature_can_be_recommended': {
6808       'desc': '''The name of the feature that indicates for a given policy that it can be recommended, instead of mandatory''',
6809       'text': '''Can Be Recommended'''
6810     },
6811     'doc_feature_can_be_mandatory': {
6812       'desc': '''The name of the feature that indicates for a given policy that it can be mandatory, instead of recommended''',
6813       'text': '''Can Be Mandatory'''
6814     },
6815     'doc_feature_per_profile': {
6816       'desc': '''The name of the feature that indicates whether a policy is applicable to browser Profiles individually or whether it affects the entire browser.''',
6817       'text': '''Per Profile'''
6818     },
6819     'doc_deprecated': {
6820       'desc': '''Text appended in parentheses to the policy name to indicate that it has been deprecated''',
6821       'text': 'deprecated',
6822     },
6823     'doc_recommended': {
6824       'desc': '''Text appended in parentheses next to the policies top-level container to indicate that those policies are of the Recommended level''',
6825       'text': 'Default Settings (users can override)',
6826     },
6827     'doc_complex_policies_on_windows': {
6828       'desc': '''Text pointing the user to a help article for complex policies on Windows''',
6829       'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POLICIES_URL">http://www.chromium.org/administrators/complex-policies-on-windows<ex>http://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>''',
6830     },
6831   },
6832   'placeholders': [],
6833 }