diff options
author | jeanluc@google.com <jeanluc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-08 22:22:41 +0000 |
---|---|---|
committer | jeanluc@google.com <jeanluc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-08 22:22:41 +0000 |
commit | 3c9991973f7f7423318277fe6595c89dfcceb2b1 (patch) | |
tree | 2ae6c2d4ffdfecbe8bae33e6a7d260f7b70193b6 /chrome/app/policy/policy_templates.json | |
parent | 317b5ebac41ab0358c0707de53c297b5d0013554 (diff) | |
download | chromium_src-3c9991973f7f7423318277fe6595c89dfcceb2b1.zip chromium_src-3c9991973f7f7423318277fe6595c89dfcceb2b1.tar.gz chromium_src-3c9991973f7f7423318277fe6595c89dfcceb2b1.tar.bz2 |
Define the Default Search related policies so that the ADM, ADMX, and Mac related policy files are generated.
BUG=49306
TEST=Install the ADM file using gpedit.msc. Look that the fields appear there and when filled modify the Basic pane of Options dialog. Do the same for the Mac: add it to Workgroup Manager and see that the values can be specified.
Review URL: http://codereview.chromium.org/3613011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62031 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/policy/policy_templates.json')
-rw-r--r-- | chrome/app/policy/policy_templates.json | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/chrome/app/policy/policy_templates.json b/chrome/app/policy/policy_templates.json index c3a314c..70a2c52 100644 --- a/chrome/app/policy/policy_templates.json +++ b/chrome/app/policy/policy_templates.json @@ -355,6 +355,82 @@ }] }, { + 'name': 'DefaultSearchProvider', + 'type': 'group', + 'policies': [ + { + 'name': 'DefaultSearchProviderEnabled', + 'type': 'main', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': True, + } + }, + { + 'name': 'DefaultSearchProviderName', + 'type': 'string', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': 'My Intranet Search', + } + }, + { + 'name': 'DefaultSearchProviderKeyword', + 'type': 'string', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': 'mis', + } + }, + { + 'name': 'DefaultSearchProviderSearchURL', + 'type': 'string', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': 'http://search.my.company/search?q={searchTerms}', + } + }, + { + 'name': 'DefaultSearchProviderSuggestURL', + 'type': 'string', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': 'http://search.my.company/suggest?q={searchTerms}', + } + }, + { + 'name': 'DefaultSearchProviderIconURL', + 'type': 'string', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': 'http://search.my.company/favicon.ico', + } + }, + { + 'name': 'DefaultSearchProviderEncodings', + 'type': 'list', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': ['UTF-8', 'UTF-16', 'GB2312', 'ISO-8859-1'] + } + }, + ] + }, + { 'name': 'ChromeFrameRendererSettings', 'type': 'group', 'policies': [{ |