summaryrefslogtreecommitdiffstats
path: root/chrome/common/pref_names.cc
diff options
context:
space:
mode:
authorjeanluc@google.com <jeanluc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-13 20:06:17 +0000
committerjeanluc@google.com <jeanluc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-13 20:06:17 +0000
commit8b5c386678b44011ff4080d86e1c22a2c8c30d01 (patch)
tree75907a0653816502a7362420b738c66fae29e481 /chrome/common/pref_names.cc
parentc6032e8b0dccde8dc24598e8c93d870b8513a42e (diff)
downloadchromium_src-8b5c386678b44011ff4080d86e1c22a2c8c30d01.zip
chromium_src-8b5c386678b44011ff4080d86e1c22a2c8c30d01.tar.gz
chromium_src-8b5c386678b44011ff4080d86e1c22a2c8c30d01.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/3374004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59270 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/pref_names.cc')
-rw-r--r--chrome/common/pref_names.cc13
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";