Chromium Code Reviews| 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 |