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

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

Issue 7558014: Add a URL param to indicate group selection in Instant field trial. (Closed) Base URL: svn://svn.chromium.org/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
Index: chrome/browser/search_engines/template_url.h
diff --git a/chrome/browser/search_engines/template_url.h b/chrome/browser/search_engines/template_url.h
index a723530c00f0d13210ad1c9f1ffdcc6a1ce2050b..b8a81ffb0baa28ef302c215c70c51dc477288df7 100644
--- a/chrome/browser/search_engines/template_url.h
+++ b/chrome/browser/search_engines/template_url.h
@@ -16,6 +16,7 @@
#include "googleurl/src/gurl.h"
class PrefService;
+class Profile;
class SearchTermsData;
class TemplateURL;
class WebDataService;
@@ -71,6 +72,7 @@ class TemplateURLRef {
//
// The TemplateURL is used to determine the input encoding for the term.
std::string ReplaceSearchTerms(
+ Profile* profile,
const TemplateURL& host,
const string16& terms,
int accepted_suggestion,
@@ -80,6 +82,7 @@ class TemplateURLRef {
// the data for some search terms. Most of the time ReplaceSearchTerms should
// be called.
std::string ReplaceSearchTermsUsingTermsData(
+ Profile* profile,
sky 2011/08/08 23:37:23 This too may be invoked from any thread, which imp
sreeram 2011/08/09 16:24:01 I am not sure how to interpret this. Is the conce
const TemplateURL& host,
const string16& terms,
int accepted_suggestion,
@@ -162,6 +165,7 @@ class TemplateURLRef {
GOOGLE_RLZ,
GOOGLE_SEARCH_FIELDTRIAL_GROUP,
GOOGLE_UNESCAPED_SEARCH_TERMS,
+ INSTANT_FIELD_TRIAL_GROUP,
LANGUAGE,
SEARCH_TERMS,
};

Powered by Google App Engine
This is Rietveld 408576698