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

Unified Diff: components/search_engines/template_url_service.h

Issue 2510803003: Pass RapporService to content/browser/ (Closed)
Patch Set: Fix more compile errors in JNI files Created 4 years 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: components/search_engines/template_url_service.h
diff --git a/components/search_engines/template_url_service.h b/components/search_engines/template_url_service.h
index b387f7bef8f1d5ac6cf201e83d1c83e47ffe7036..68f9eedb13625fe47d816d0637b0a3cec588fb9f 100644
--- a/components/search_engines/template_url_service.h
+++ b/components/search_engines/template_url_service.h
@@ -41,7 +41,7 @@ class TemplateURLServiceObserver;
struct TemplateURLData;
namespace rappor {
-class RapporService;
+class RapporServiceImpl;
}
namespace syncer {
@@ -109,7 +109,7 @@ class TemplateURLService : public WebDataServiceConsumer,
const scoped_refptr<KeywordWebDataService>& web_data_service,
std::unique_ptr<TemplateURLServiceClient> client,
GoogleURLTracker* google_url_tracker,
- rappor::RapporService* rappor_service,
+ rappor::RapporServiceImpl* rappor_service,
const base::Closure& dsp_change_callback);
// The following is for testing.
TemplateURLService(const Initializer* initializers, const int count);
@@ -728,7 +728,7 @@ class TemplateURLService : public WebDataServiceConsumer,
GoogleURLTracker* google_url_tracker_;
// ---------- Metrics related members ---------------------------------------
- rappor::RapporService* rappor_service_;
+ rappor::RapporServiceImpl* rappor_service_;
// This closure is run when the default search provider is set to Google.
base::Closure dsp_change_callback_;

Powered by Google App Engine
This is Rietveld 408576698