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

Unified Diff: chrome/browser/search_engines/template_url_prepopulate_data.cc

Issue 10274023: Omnibox SearchProvider Experiment Client Implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Working to some degree... Created 8 years, 8 months 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/search_engines/template_url_prepopulate_data.cc
diff --git a/chrome/browser/search_engines/template_url_prepopulate_data.cc b/chrome/browser/search_engines/template_url_prepopulate_data.cc
index 7cd25c3ccc81d8bac90780ebeb76c080e735aa43..bfca76679d81c541c99da59b2ef21827435f8dfd 100644
--- a/chrome/browser/search_engines/template_url_prepopulate_data.cc
+++ b/chrome/browser/search_engines/template_url_prepopulate_data.cc
@@ -1092,9 +1092,11 @@ const PrepopulatedEngine google = {
"{google:instantFieldTrialGroupParameter}sourceid=chrome&"
"ie={inputEncoding}&q={searchTerms}",
"UTF-8",
- "{google:baseSuggestURL}search?{google:searchFieldtrialParameter}"
- "{google:instantFieldTrialGroupParameter}client=chrome&hl={language}&"
- "q={searchTerms}",
+ // Testing the suggest experiment provider...
Peter Kasting 2012/05/04 00:11:33 Make sure you don't check this in :)
msw 2012/05/04 09:43:40 Done.
+ "http://0.websearch-nonprod.gws.hfung.vd.borg.google.com/complete/search?q={searchTerms}&client=chrome",
+ //"{google:baseSuggestURL}search?{google:searchFieldtrialParameter}"
+ // "{google:instantFieldTrialGroupParameter}client=chrome&hl={language}&"
+ // "q={searchTerms}",
"{google:baseURL}webhp?{google:RLZ}sourceid=chrome-instant&"
"{google:instantFieldTrialGroupParameter}ie={inputEncoding}"
"{google:instantEnabledParameter}{searchTerms}",
@@ -3140,7 +3142,7 @@ void RegisterUserPrefs(PrefService* prefs) {
int GetDataVersion(PrefService* prefs) {
// Increment this if you change the above data in ways that mean users with
// existing data should get a new version.
- const int kCurrentDataVersion = 38;
+ const int kCurrentDataVersion = 39;
if (!prefs)
return kCurrentDataVersion;
// If a version number exist in the preferences file, it overrides the

Powered by Google App Engine
This is Rietveld 408576698