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

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

Issue 5991003: Added group policy for disabling all client-side 3D APIs in Chromium... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years 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
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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 'type': 'list', 499 'type': 'list',
500 'supported_on': ['chrome.*:8-'], 500 'supported_on': ['chrome.*:8-'],
501 'annotations': { 501 'annotations': {
502 'features': {'dynamic_refresh': 1}, 502 'features': {'dynamic_refresh': 1},
503 'example_value': ['UTF-8', 'UTF-16', 'GB2312', 'ISO-8859-1'] 503 'example_value': ['UTF-8', 'UTF-16', 'GB2312', 'ISO-8859-1']
504 } 504 }
505 }, 505 },
506 ] 506 ]
507 }, 507 },
508 { 508 {
509 'name': 'Disable3DAPIs',
510 'type': 'main',
511 'supported_on': ['chrome.*:9-'],
512 'annotations': {
513 # It'll be difficult to support dynamically disabling access to these AP Is.
514 'features': {'dynamic_refresh': 0},
515 'example_value': False,
516 }
517 },
518 {
509 'name': 'ChromeFrameRendererSettings', 519 'name': 'ChromeFrameRendererSettings',
510 'type': 'group', 520 'type': 'group',
511 'policies': [{ 521 'policies': [{
512 'name': 'ChromeFrameRendererSettings', 522 'name': 'ChromeFrameRendererSettings',
513 'type': 'enum', 523 'type': 'enum',
514 'items': [ 524 'items': [
515 {'name': 'RenderInHost', 'value': '0'}, 525 {'name': 'RenderInHost', 'value': '0'},
516 {'name': 'RenderInChromeFrame', 'value': '1'}, 526 {'name': 'RenderInChromeFrame', 'value': '1'},
517 ], 527 ],
518 'supported_on': ['chrome_frame:8-'], 528 'supported_on': ['chrome_frame:8-'],
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 { 581 {
572 'key': '$4', 582 'key': '$4',
573 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting- started' 583 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting- started'
574 }, 584 },
575 { 585 {
576 'key': '$5', 586 'key': '$5',
577 'value': 'http://www.chromium.org/administrators/policy-templates' 587 'value': 'http://www.chromium.org/administrators/policy-templates'
578 }, 588 },
579 ] 589 ]
580 } 590 }
OLDNEW
« no previous file with comments | « chrome/app/policy/policy_templates.grd ('k') | chrome/browser/policy/configuration_policy_pref_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698