Commit fa70c11b authored by jar@chromium.org's avatar jar@chromium.org

Change google search parameter to gcx from cx in experiment


bug=94454
r=pkasting
Review URL: http://codereview.chromium.org/7801001

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98688 0039d316-1c4b-4281-b951-d872f2087c98
parent 5b109a5d
...@@ -421,15 +421,13 @@ std::string TemplateURLRef::ReplaceSearchTermsUsingTermsData( ...@@ -421,15 +421,13 @@ std::string TemplateURLRef::ReplaceSearchTermsUsingTermsData(
} }
case GOOGLE_SEARCH_FIELDTRIAL_GROUP: { case GOOGLE_SEARCH_FIELDTRIAL_GROUP: {
#if 0 // Disable until a decision is made about what parameter to use.
static bool use_suggest_prefix = static bool use_suggest_prefix =
base::FieldTrialList::TrialExists("SuggestHostPrefix"); base::FieldTrialList::TrialExists("SuggestHostPrefix");
if (use_suggest_prefix) { if (use_suggest_prefix) {
static bool used_www = (base::FieldTrialList::FindFullName( static bool used_www = (base::FieldTrialList::FindFullName(
"SuggestHostPrefix") == "Www_Prefix"); "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; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment