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

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

Issue 2588423005: Add policies for controlling the roaming profile status and location. (Closed)
Patch Set: Created 3 years, 12 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
« no previous file with comments | « chrome/test/data/policy/policy_test_cases.json ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 # templates and documentation. The policy definition list that Chrome sees 132 # templates and documentation. The policy definition list that Chrome sees
133 # will include policies marked with 'future'. If a WIP policy isn't meant to 133 # will include policies marked with 'future'. If a WIP policy isn't meant to
134 # be seen by the policy providers either, the 'supported_on' key should be set 134 # be seen by the policy providers either, the 'supported_on' key should be set
135 # to an empty list. 135 # to an empty list.
136 # 136 #
137 # IDs: 137 # IDs:
138 # Since a Protocol Buffer definition is generated from this file, unique and 138 # Since a Protocol Buffer definition is generated from this file, unique and
139 # persistent IDs for all fields (but not for groups!) are needed. These are 139 # persistent IDs for all fields (but not for groups!) are needed. These are
140 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, 140 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
141 # because doing so would break the deployed wire format! 141 # because doing so would break the deployed wire format!
142 # For your editing convenience: highest ID currently used: 357 142 # For your editing convenience: highest ID currently used: 359
143 # 143 #
144 # Placeholders: 144 # Placeholders:
145 # The following placeholder strings are automatically substituted: 145 # The following placeholder strings are automatically substituted:
146 # $1 -> Google Chrome / Chromium 146 # $1 -> Google Chrome / Chromium
147 # $2 -> Google Chrome OS / Chromium OS 147 # $2 -> Google Chrome OS / Chromium OS
148 # $3 -> Google Chrome Frame / Chromium Frame 148 # $3 -> Google Chrome Frame / Chromium Frame
149 # $6 is reserved for doc_writer 149 # $6 is reserved for doc_writer
150 # 150 #
151 # Device Policy: 151 # Device Policy:
152 # An additional flag 'device_only' (optional, defaults to False) indicates 152 # An additional flag 'device_only' (optional, defaults to False) indicates
(...skipping 1314 matching lines...) Expand 10 before | Expand all | Expand 10 after
1467 'desc': '''Disables data synchronization in <ph name="PRODUCT_NAME">$1<ex> Google Chrome</ex></ph> using Google-hosted synchronization services and prevent s users from changing this setting. 1467 'desc': '''Disables data synchronization in <ph name="PRODUCT_NAME">$1<ex> Google Chrome</ex></ph> using Google-hosted synchronization services and prevent s users from changing this setting.
1468 1468
1469 If you enable this setting, users cannot change or override this setting i n <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. 1469 If you enable this setting, users cannot change or override this setting i n <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
1470 1470
1471 If this policy is left not set Google Sync will be available for the user to choose whether to use it or not. 1471 If this policy is left not set Google Sync will be available for the user to choose whether to use it or not.
1472 1472
1473 To fully disable Google Sync, it is recommended that you disable the Googl e Sync service in the Google Admin console.''', 1473 To fully disable Google Sync, it is recommended that you disable the Googl e Sync service in the Google Admin console.''',
1474 'arc_support': 'Disabling Google Sync will cause Android Backup and Restor e to not function properly.', 1474 'arc_support': 'Disabling Google Sync will cause Android Backup and Restor e to not function properly.',
1475 }, 1475 },
1476 { 1476 {
1477 'name': 'RoamingProfileSupportEnabled',
1478 'type': 'main',
1479 'schema': { 'type': 'boolean' },
1480 'supported_on': ['chrome.win:57-'],
1481 'features': {
1482 'dynamic_refresh': False,
1483 'per_profile': False,
1484 },
1485 'example_value': True,
1486 'id': 358,
1487 'caption': '''Enable the creation of roaming copies for <ph name="PRODUCT_ NAME">$1<ex>Google Chrome</ex></ph> profile data.''',
1488 'tags': ['local-data-access'],
1489 'desc': '''Enables the creation of roaming copies for <ph name="PRODUCT_NA ME">$1<ex>Google Chrome</ex></ph> profile data.
1490
1491 If you enable this setting, the settings stored in <ph name="PRODUCT_NAME" >$1<ex>Google Chrome</ex></ph> profiles like bookmarks, autofill data, passwords etc. will also be written to a file stored in the Roaming user profile folder o r a location specified by the Administrator through the <ph name="ROAMINGPROFILE LOCATION_POLICY_NAME">$1<ex>RoamingProfileLocation</ex></ph> policy.
emaxx 2016/12/22 13:05:24 nit: s/ etc./, etc./
pastarmovj 2016/12/22 13:19:50 Done.
1492
1493 Google Sync is automatically disabled when this policy is enabled.
1494
1495 To prevent accidental data leaks it is advisable to also set the <ph name= "SIGNINALLOWED_POLICY_NAME">$1<ex>SigninAllowed</ex></ph> policy to False.
emaxx 2016/12/22 13:05:24 The SigninAllowed policy is deprecated: https://ww
pastarmovj 2016/12/22 13:19:50 As per discussion. The policy should still work bu
1496
1497 If this policy is disabled or left not set only the regular local profiles will be used.'''
1498 },
emaxx 2016/12/22 13:05:24 Not sure, but maybe it would make sense to add 'la
pastarmovj 2016/12/22 13:19:50 Done.
1499 {
1500 'name': 'RoamingProfileLocation',
1501 'type': 'string',
1502 'schema': { 'type': 'string' },
1503 'supported_on': ['chrome.win:57-'],
1504 'features': {
1505 'dynamic_refresh': False,
1506 'per_profile': False,
1507 },
1508 'example_value': '${roaming_app_data}\\chrome-profile',
1509 'id': 359,
1510 'caption': '''Set the roaming profile directory''',
1511 'tags': ['local-data-access'],
1512 'desc': '''Configures the directory that <ph name="PRODUCT_NAME">$1<ex>Goo gle Chrome</ex></ph> will use for storing the roaming copy of the profiles.
1513
1514 If you set this policy, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ ph> will use the provided directory to store the roaming copy of the profiles if the <ph name="ROAMINGPROFILESUPPORTENABLED_POLICY_NAME">$1<ex>RoamingProfileSup portEnabled</ex></ph> policy has been enabled. If the <ph name="ROAMINGPROFILESU PPORTENABLED_POLICY_NAME">$1<ex>RoamingProfileSupportEnabled</ex></ph> policy is disabled or left unset the value stored in this policy is not used.
1515
1516 See https://www.chromium.org/administrators/policy-list-3/user-data-direct ory-variables for a list of variables that can be used.
1517
1518 If this policy is left not set the default roaming profile path will be us ed.''',
1519 'label': '''Set the roaming profile directory''',
1520 },
1521 {
1477 'name': 'SigninAllowed', 1522 'name': 'SigninAllowed',
1478 'type': 'main', 1523 'type': 'main',
1479 'schema': { 'type': 'boolean' }, 1524 'schema': { 'type': 'boolean' },
1480 'supported_on': ['chrome.*:27-', 'android:38-'], 1525 'supported_on': ['chrome.*:27-', 'android:38-'],
1481 'features': { 1526 'features': {
1482 'dynamic_refresh': True, 1527 'dynamic_refresh': True,
1483 'per_profile': True, 1528 'per_profile': True,
1484 }, 1529 },
1485 'deprecated': True, 1530 'deprecated': True,
1486 'example_value': True, 1531 'example_value': True,
(...skipping 8005 matching lines...) Expand 10 before | Expand all | Expand 10 after
9492 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 9537 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
9493 'text': 'Default Settings (users can override)', 9538 'text': 'Default Settings (users can override)',
9494 }, 9539 },
9495 'doc_complex_policies_on_windows': { 9540 'doc_complex_policies_on_windows': {
9496 'desc': '''Text pointing the user to a help article for complex policies o n Windows''', 9541 'desc': '''Text pointing the user to a help article for complex policies o n Windows''',
9497 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">https://www.chromium.org/administrators/complex-policies-on-windows<e x>https://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>' '', 9542 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">https://www.chromium.org/administrators/complex-policies-on-windows<e x>https://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>' '',
9498 }, 9543 },
9499 }, 9544 },
9500 'placeholders': [], 9545 'placeholders': [],
9501 } 9546 }
OLDNEW
« no previous file with comments | « chrome/test/data/policy/policy_test_cases.json ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698