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

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

Issue 7801001: Change google search parameter to gcx from cx in experiment (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/search_engines/template_url.cc
===================================================================
--- chrome/browser/search_engines/template_url.cc (revision 98640)
+++ chrome/browser/search_engines/template_url.cc (working copy)
@@ -421,15 +421,13 @@
}
case GOOGLE_SEARCH_FIELDTRIAL_GROUP: {
-#if 0 // Disable until a decision is made about what parameter to use.
static bool use_suggest_prefix =
base::FieldTrialList::TrialExists("SuggestHostPrefix");
if (use_suggest_prefix) {
static bool used_www = (base::FieldTrialList::FindFullName(
"SuggestHostPrefix") == "Www_Prefix");
- url.insert(i->index, used_www ? "cx=w&" : "cx=c&");
+ url.insert(i->index, used_www ? "gcx=w&" : "gcx=c&");
}
-#endif // 0
break;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698