OLD | NEW |
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 Loading... |
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: 219 | 115 # For your editing convenience: highest ID currently used: 220 |
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 4243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4369 'desc': '''Specifies whether video activity affects power management. | 4369 'desc': '''Specifies whether video activity affects power management. |
4370 | 4370 |
4371 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 dela
y, screen off delay and screen lock delay from being reached and the correspondi
ng actions from being taken. | 4371 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 dela
y, screen off delay and screen lock delay from being reached and the correspondi
ng actions from being taken. |
4372 | 4372 |
4373 If this policy is set to False, video activity does not prevent the us
er from being considered idle.''', | 4373 If this policy is set to False, video activity does not prevent the us
er from being considered idle.''', |
4374 }, | 4374 }, |
4375 { | 4375 { |
4376 'name': 'PresentationIdleDelayScale', | 4376 'name': 'PresentationIdleDelayScale', |
4377 'type': 'int', | 4377 'type': 'int', |
4378 'schema': { 'type': 'integer' }, | 4378 'schema': { 'type': 'integer' }, |
4379 'supported_on': ['chrome_os:26-'], | 4379 'supported_on': ['chrome_os:26-28'], |
| 4380 'features': { |
| 4381 'dynamic_refresh': True, |
| 4382 'per_profile': False, |
| 4383 }, |
| 4384 'deprecated': True, |
| 4385 'example_value': 200, |
| 4386 'id': 184, |
| 4387 'caption': '''Percentage by which to scale the idle delay in presentat
ion mode (deprecated)''', |
| 4388 'desc': '''This policy has been retired as of <ph name="PRODUCT_OS_NAM
E">$2<ex>Google Chrome OS</ex></ph> version 29. Please use the PresentationScree
nDimDelayScale policy instead.''', |
| 4389 }, |
| 4390 { |
| 4391 'name': 'PresentationScreenDimDelayScale', |
| 4392 'type': 'int', |
| 4393 'schema': { 'type': 'integer' }, |
| 4394 'supported_on': ['chrome_os:29-'], |
4380 'features': { | 4395 'features': { |
4381 'dynamic_refresh': True, | 4396 'dynamic_refresh': True, |
4382 'per_profile': False, | 4397 'per_profile': False, |
4383 }, | 4398 }, |
4384 'example_value': 200, | 4399 'example_value': 200, |
4385 'id': 184, | 4400 'id': 220, |
4386 'caption': '''Percentage by which to scale the idle delay in presentat
ion mode''', | 4401 'caption': '''Percentage by which to scale the screen dim delay in pre
sentation mode''', |
4387 'desc': '''Specifies the percentage by which the idle delay is scaled
when the device is in presentation mode. | 4402 'desc': '''Specifies the percentage by which the screen dim delay is s
caled when the device is in presentation mode. |
4388 | 4403 |
4389 If this policy is set, it specifies the percentage by which the idle d
elay is scaled when the device is in presentation mode. When the idle delay is s
caled, the screen dimming, screen off and screen lock delays get adjusted to mai
ntain the same distances from the idle delay as originally configured. | 4404 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 di
m delay is scaled, the screen off, screen lock and idle delays get adjusted to m
aintain the same distances from the screen dim delay as originally configured. |
4390 | 4405 |
4391 If this policy is unset, a default scale factor is used. | 4406 If this policy is unset, a default scale factor is used. |
4392 | 4407 |
4393 The scale factor must be 100% or more. Values that would make the idle
delay in presentation mode shorter than the regular idle delay are not allowed.
''', | 4408 The scale factor must be 100% or more. Values that would make the scre
en dim delay in presentation mode shorter than the regular screen dim delay are
not allowed.''', |
4394 }, | 4409 }, |
4395 { | 4410 { |
4396 'name': 'AllowScreenWakeLocks', | 4411 'name': 'AllowScreenWakeLocks', |
4397 'type': 'main', | 4412 'type': 'main', |
4398 'schema': { 'type': 'boolean' }, | 4413 'schema': { 'type': 'boolean' }, |
4399 'supported_on': ['chrome_os:28-'], | 4414 'supported_on': ['chrome_os:28-'], |
4400 'features': { | 4415 'features': { |
4401 'dynamic_refresh': True, | 4416 'dynamic_refresh': True, |
4402 'per_profile': False, | 4417 'per_profile': False, |
4403 }, | 4418 }, |
(...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5099 'desc': '''Text appended in parentheses to the policy name to indicate tha
t it has been deprecated''', | 5114 'desc': '''Text appended in parentheses to the policy name to indicate tha
t it has been deprecated''', |
5100 'text': 'deprecated', | 5115 'text': 'deprecated', |
5101 }, | 5116 }, |
5102 'doc_recommended': { | 5117 'doc_recommended': { |
5103 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', | 5118 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', |
5104 'text': 'Default Settings (users can override)', | 5119 'text': 'Default Settings (users can override)', |
5105 }, | 5120 }, |
5106 }, | 5121 }, |
5107 'placeholders': [], | 5122 'placeholders': [], |
5108 } | 5123 } |
OLD | NEW |