diff options
author | jeanluc@google.com <jeanluc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-09 23:48:38 +0000 |
---|---|---|
committer | jeanluc@google.com <jeanluc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-09 23:48:38 +0000 |
commit | 1290c3306d48559a4fe233e1dc48f82b3576c5f5 (patch) | |
tree | 8917638b7a31f511ef6f0884c22c543d28ed307f /chrome/common/pref_names.cc | |
parent | 51260c7719da871adae2cfe3085adddf8e5f8658 (diff) | |
download | chromium_src-1290c3306d48559a4fe233e1dc48f82b3576c5f5.zip chromium_src-1290c3306d48559a4fe233e1dc48f82b3576c5f5.tar.gz chromium_src-1290c3306d48559a4fe233e1dc48f82b3576c5f5.tar.bz2 |
Add constants for preferences and policies related to the Default Search Provider. Add code to read these new policies into prefs. Add code to enable monitoring change to these preferences.
BUG=49306
TEST=ConfigurationPolicyPrefStoreTest.* and ConfigurationPolicyProviderWinTest.*
Review URL: http://codereview.chromium.org/3359012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59020 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/pref_names.cc')
-rw-r--r-- | chrome/common/pref_names.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index 451e283..d7031ae 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -133,9 +133,22 @@ const char kDefaultSearchProviderSearchURL[] = const char kDefaultSearchProviderSuggestURL[] = "default_search_provider.suggest_url"; +// The Fav Icon URL (as understood by TemplateURLRef) of the default search +// provider. +const char kDefaultSearchProviderIconURL[] = + "default_search_provider.icon_url"; + +// The input encoding (as understood by TemplateURLRef) supported by the default +// search provider. The various encodings are separated by ';' +const char kDefaultSearchProviderEncodings[] = + "default_search_provider.encodings"; + // The name of the default search provider. const char kDefaultSearchProviderName[] = "default_search_provider.name"; +// The keyword of the default search provider. +const char kDefaultSearchProviderKeyword[] = "default_search_provider.keyword"; + // The id of the default search provider. const char kDefaultSearchProviderID[] = "default_search_provider.id"; |