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

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

Issue 19733003: Implement cloud policy invalidations using the invalidation service framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 # policy_templates.json - Metafile for policy templates 2 # policy_templates.json - Metafile for policy templates
3 # 3 #
4 # The content of this file is evaluated as a Python expression. 4 # The content of this file is evaluated as a Python expression.
5 # 5 #
6 # This file is used as input to generate the following policy templates: 6 # This file is used as input to generate the following policy templates:
7 # ADM, ADMX+ADML, MCX/plist and html documentation. 7 # ADM, ADMX+ADML, MCX/plist and html documentation.
8 # 8 #
9 # Policy templates are user interface definitions or documents about the 9 # Policy templates are user interface definitions or documents about the
10 # policies that can be used to configure Chrome. Each policy is a name-value 10 # policies that can be used to configure Chrome. Each policy is a name-value
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 # templates and documentation. The policy definition list that Chrome sees 105 # templates and documentation. The policy definition list that Chrome sees
106 # will include policies marked with 'future'. If a WIP policy isn't meant to 106 # will include policies marked with 'future'. If a WIP policy isn't meant to
107 # be seen by the policy providers either, the 'supported_on' key should be set 107 # be seen by the policy providers either, the 'supported_on' key should be set
108 # to an empty list. 108 # to an empty list.
109 # 109 #
110 # IDs: 110 # IDs:
111 # Since a Protocol Buffer definition is generated from this file, unique and 111 # Since a Protocol Buffer definition is generated from this file, unique and
112 # persistent IDs for all fields (but not for groups!) are needed. These are 112 # persistent IDs for all fields (but not for groups!) are needed. These are
113 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, 113 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
114 # because doing so would break the deployed wire format! 114 # because doing so would break the deployed wire format!
115 # For your editing convenience: highest ID currently used: 226 115 # For your editing convenience: highest ID currently used: 228
116 # 116 #
117 # Placeholders: 117 # Placeholders:
118 # The following placeholder strings are automatically substituted: 118 # The following placeholder strings are automatically substituted:
119 # $1 -> Google Chrome / Chromium 119 # $1 -> Google Chrome / Chromium
120 # $2 -> Google Chrome OS / Chromium OS 120 # $2 -> Google Chrome OS / Chromium OS
121 # $3 -> Google Chrome Frame / Chromium Frame 121 # $3 -> Google Chrome Frame / Chromium Frame
122 # $6 is reserved for doc_writer 122 # $6 is reserved for doc_writer
123 # 123 #
124 # Device Policy: 124 # Device Policy:
125 # An additional flag device_only (optional, defaults to False) indicates 125 # An additional flag device_only (optional, defaults to False) indicates
(...skipping 2303 matching lines...) Expand 10 before | Expand all | Expand 10 after
2429 'example_value': 3600000, 2429 'example_value': 3600000,
2430 'id': 56, 2430 'id': 56,
2431 'caption': '''Refresh rate for user policy''', 2431 'caption': '''Refresh rate for user policy''',
2432 'desc': '''Specifies the period in milliseconds at which the device manage ment service is queried for user policy information. 2432 'desc': '''Specifies the period in milliseconds at which the device manage ment service is queried for user policy information.
2433 2433
2434 Setting this policy overrides the default value of 3 hours. Valid values f or this policy are in the range from 1800000 (30 minutes) to 86400000 (1 day). A ny values not in this range will be clamped to the respective boundary. 2434 Setting this policy overrides the default value of 3 hours. Valid values f or this policy are in the range from 1800000 (30 minutes) to 86400000 (1 day). A ny values not in this range will be clamped to the respective boundary.
2435 2435
2436 Leaving this policy not set will make <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> use the default value of 3 hours.''', 2436 Leaving this policy not set will make <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> use the default value of 3 hours.''',
2437 }, 2437 },
2438 { 2438 {
2439 'name': 'MaxInvalidationFetchDelay',
2440 'type': 'int',
2441 'schema': { 'type': 'integer' },
2442 'supported_on': ['chrome.*:30-', 'chrome_os:0.30-'],
2443 'features': {
2444 'dynamic_refresh': True,
2445 'per_profile': True,
2446 },
2447 'example_value': 10000,
2448 'id': 228,
2449 'caption': '''Maximum fetch delay after a policy invalidation''',
2450 'desc': '''Specifies the maximum delay in milliseconds between receiving a policy invalidation and fetching the new policy from the device management serv ice.
2451
2452 Setting this policy overrides the default value of 5000 milliseconds. Vali d values for this policy are in the range from 1000 (1 second) to 300000 (5 minu tes). Any values not in this range will be clamped to the respective boundary.
2453
2454 Leaving this policy not set will make <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> use the default value of 5000 milliseconds.''',
2455 },
2456 {
2439 'name': 'ChromeFrameRendererSettings', 2457 'name': 'ChromeFrameRendererSettings',
2440 'type': 'group', 2458 'type': 'group',
2441 'caption': '''Default HTML renderer for <ph name="PRODUCT_FRAME_NAME">$3<e x>Google Chrome Frame</ex></ph>''', 2459 'caption': '''Default HTML renderer for <ph name="PRODUCT_FRAME_NAME">$3<e x>Google Chrome Frame</ex></ph>''',
2442 'desc': '''Allows you to configure the default HTML renderer when <ph name ="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> is installed. 2460 'desc': '''Allows you to configure the default HTML renderer when <ph name ="PRODUCT_FRAME_NAME">$3<ex>Google Chrome Frame</ex></ph> is installed.
2443 The default setting is to allow the host browser do the rendering, but you 2461 The default setting is to allow the host browser do the rendering, but you
2444 can optionally override this and have <ph name="PRODUCT_FRAME_NAME">$3<ex> 2462 can optionally override this and have <ph name="PRODUCT_FRAME_NAME">$3<ex>
2445 Google Chrome Frame</ex></ph> render HTML pages by default.''', 2463 Google Chrome Frame</ex></ph> render HTML pages by default.''',
2446 'policies': [ 2464 'policies': [
2447 { 2465 {
2448 'name': 'ChromeFrameRendererSettings', 2466 'name': 'ChromeFrameRendererSettings',
(...skipping 2935 matching lines...) Expand 10 before | Expand all | Expand 10 after
5384 'desc': '''Text appended in parentheses to the policy name to indicate tha t it has been deprecated''', 5402 'desc': '''Text appended in parentheses to the policy name to indicate tha t it has been deprecated''',
5385 'text': 'deprecated', 5403 'text': 'deprecated',
5386 }, 5404 },
5387 'doc_recommended': { 5405 'doc_recommended': {
5388 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 5406 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
5389 'text': 'Default Settings (users can override)', 5407 'text': 'Default Settings (users can override)',
5390 }, 5408 },
5391 }, 5409 },
5392 'placeholders': [], 5410 'placeholders': [],
5393 } 5411 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698