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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 { | 476 { |
477 'name': 'DefaultSearchProviderSuggestURL', | 477 'name': 'DefaultSearchProviderSuggestURL', |
478 'type': 'string', | 478 'type': 'string', |
479 'supported_on': ['chrome.*:8-'], | 479 'supported_on': ['chrome.*:8-'], |
480 'annotations': { | 480 'annotations': { |
481 'features': {'dynamic_refresh': 1}, | 481 'features': {'dynamic_refresh': 1}, |
482 'example_value': 'http://search.my.company/suggest?q={searchTerms}', | 482 'example_value': 'http://search.my.company/suggest?q={searchTerms}', |
483 } | 483 } |
484 }, | 484 }, |
485 { | 485 { |
| 486 'name': 'DefaultSearchProviderInstantURL', |
| 487 'type': 'string', |
| 488 'supported_on': ['chrome.*:10-'], |
| 489 'annotations': { |
| 490 'features': {'dynamic_refresh': 1}, |
| 491 'example_value': 'http://search.my.company/suggest?q={searchTerms}', |
| 492 } |
| 493 }, |
| 494 { |
486 'name': 'DefaultSearchProviderIconURL', | 495 'name': 'DefaultSearchProviderIconURL', |
487 'type': 'string', | 496 'type': 'string', |
488 'supported_on': ['chrome.*:8-'], | 497 'supported_on': ['chrome.*:8-'], |
489 'annotations': { | 498 'annotations': { |
490 'features': {'dynamic_refresh': 1}, | 499 'features': {'dynamic_refresh': 1}, |
491 'example_value': 'http://search.my.company/favicon.ico', | 500 'example_value': 'http://search.my.company/favicon.ico', |
492 } | 501 } |
493 }, | 502 }, |
494 { | 503 { |
495 'name': 'DefaultSearchProviderEncodings', | 504 'name': 'DefaultSearchProviderEncodings', |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
677 { | 686 { |
678 'key': '$4', | 687 'key': '$4', |
679 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting-
started' | 688 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting-
started' |
680 }, | 689 }, |
681 { | 690 { |
682 'key': '$5', | 691 'key': '$5', |
683 'value': 'http://www.chromium.org/administrators/policy-templates' | 692 'value': 'http://www.chromium.org/administrators/policy-templates' |
684 }, | 693 }, |
685 ] | 694 ] |
686 } | 695 } |
OLD | NEW |