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

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

Issue 10827265: Add Chromoting curtain-mode policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reviewer feedback. Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/policy/configuration_policy_handler_list.cc » ('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 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: 156 115 # For your editing convenience: highest ID currently used: 157
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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 'desc': '''Configures the TalkGadget prefix that will be used by remot e access hosts and prevents users from changing it. 496 'desc': '''Configures the TalkGadget prefix that will be used by remot e access hosts and prevents users from changing it.
497 497
498 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'. 498 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'.
499 499
500 If this setting is enabled, then hosts will use the custom domain name when accessing the TalkGadget instead of the default domain name. 500 If this setting is enabled, then hosts will use the custom domain name when accessing the TalkGadget instead of the default domain name.
501 501
502 If this setting is disabled or not set, then the default TalkGadget do main name ('chromoting-host.talkgadget.google.com') will be used for all hosts. 502 If this setting is disabled or not set, then the default TalkGadget do main name ('chromoting-host.talkgadget.google.com') will be used for all hosts.
503 503
504 Remote access clients are not affected by this policy setting. They wi ll always use 'chromoting-client.talkgadget.google.com' to access the TalkGadget .''', 504 Remote access clients are not affected by this policy setting. They wi ll always use 'chromoting-client.talkgadget.google.com' to access the TalkGadget .''',
505 }, 505 },
506 {
507 'name': 'RemoteAccessHostRequireCurtain',
508 'type': 'main',
509 'schema': { 'type': 'boolean' },
510 'supported_on': ['chrome.*:23-', 'chrome_os:0.23-'],
511 'features': {'dynamic_refresh': True},
512 'example_value': False,
513 'id': 157,
514 'caption': '''Enable curtaining of remote access hosts.''',
515 'desc': '''Enables curtaining of remote access hosts while a connectio n is in progress.
516
517 If this setting is enabled, then hosts' physical input and output devi ces are disabled while a remote connection is in progress.
518
519 If this setting is disabled or not set, then both local and remote use rs can interact with the host when it is being shared.''',
520 },
506 ], 521 ],
507 }, 522 },
508 { 523 {
509 'name': 'PrintingEnabled', 524 'name': 'PrintingEnabled',
510 'type': 'main', 525 'type': 'main',
511 'schema': { 'type': 'boolean' }, 526 'schema': { 'type': 'boolean' },
512 'supported_on': ['chrome.*:8-', 'chrome_os:0.11-'], 527 'supported_on': ['chrome.*:8-', 'chrome_os:0.11-'],
513 'features': {'dynamic_refresh': True}, 528 'features': {'dynamic_refresh': True},
514 'example_value': True, 529 'example_value': True,
515 'id': 12, 530 'id': 12,
(...skipping 2725 matching lines...) Expand 10 before | Expand all | Expand 10 after
3241 'desc': '''Text appended in parentheses to the policy name to indicate tha t it has been deprecated''', 3256 'desc': '''Text appended in parentheses to the policy name to indicate tha t it has been deprecated''',
3242 'text': 'deprecated', 3257 'text': 'deprecated',
3243 }, 3258 },
3244 'doc_recommended': { 3259 'doc_recommended': {
3245 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 3260 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
3246 'text': 'Recommended', 3261 'text': 'Recommended',
3247 }, 3262 },
3248 }, 3263 },
3249 'placeholders': [], 3264 'placeholders': [],
3250 } 3265 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/policy/configuration_policy_handler_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698