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

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

Issue 136633003: Fix schema for AutoCleanUpStrategy policy (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 3418 matching lines...) Expand 10 before | Expand all | Expand 10 after
3429 3429
3430 If the user has enabled sync all this data is preserved in his sync profil e just like with regular profiles. Incognito mode is also available if not expli citly disabled by policy. 3430 If the user has enabled sync all this data is preserved in his sync profil e just like with regular profiles. Incognito mode is also available if not expli citly disabled by policy.
3431 3431
3432 If the policy is set to disabled or left not set signing in leads to regul ar profiles.''' 3432 If the policy is set to disabled or left not set signing in leads to regul ar profiles.'''
3433 }, 3433 },
3434 { 3434 {
3435 'name': 'AutoCleanUpStrategy', 3435 'name': 'AutoCleanUpStrategy',
3436 'type': 'string-enum', 3436 'type': 'string-enum',
3437 'schema': { 3437 'schema': {
3438 'type': 'string', 3438 'type': 'string',
3439 'enum': [ 3439 'enum': [ 'remove-lru', 'remove-lru-if-dormant' ],
3440 'remove-lru',
3441 ],
3442 }, 3440 },
3443 'items': [ 3441 'items': [
3444 { 3442 {
3445 'name': 'RemoveLRU', 3443 'name': 'RemoveLRU',
3446 'value': 'remove-lru', 3444 'value': 'remove-lru',
3447 'caption': '''Least recently used users are removed until there is eno ugh free space''', 3445 'caption': '''Least recently used users are removed until there is eno ugh free space''',
3448 }, 3446 },
3449 { 3447 {
3450 'name': 'RemoveLRUIfDormant', 3448 'name': 'RemoveLRUIfDormant',
3451 'value': 'remove-lru-if-dormant', 3449 'value': 'remove-lru-if-dormant',
(...skipping 2492 matching lines...) Expand 10 before | Expand all | Expand 10 after
5944 'desc': '''Text appended in parentheses to the policy name to indicate tha t it has been deprecated''', 5942 'desc': '''Text appended in parentheses to the policy name to indicate tha t it has been deprecated''',
5945 'text': 'deprecated', 5943 'text': 'deprecated',
5946 }, 5944 },
5947 'doc_recommended': { 5945 'doc_recommended': {
5948 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 5946 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
5949 'text': 'Default Settings (users can override)', 5947 'text': 'Default Settings (users can override)',
5950 }, 5948 },
5951 }, 5949 },
5952 'placeholders': [], 5950 'placeholders': [],
5953 } 5951 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698