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

Unified Diff: chrome/browser/tab_contents/navigation_metrics_recorder.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: chrome/browser/tab_contents/navigation_metrics_recorder.h
diff --git a/chrome/browser/tab_contents/navigation_metrics_recorder.h b/chrome/browser/tab_contents/navigation_metrics_recorder.h
index c2fbd202ecf5c4eaac69a02f056a24473f30469a..0aa6fdb589d1fe8d71669119ff662ce81d9235cc 100644
--- a/chrome/browser/tab_contents/navigation_metrics_recorder.h
+++ b/chrome/browser/tab_contents/navigation_metrics_recorder.h
@@ -10,7 +10,7 @@
#include "content/public/browser/web_contents_user_data.h"
namespace rappor {
-class RapporService;
+class RapporServiceImpl;
}
class NavigationMetricsRecorder
@@ -19,7 +19,8 @@ class NavigationMetricsRecorder
public:
~NavigationMetricsRecorder() override;
- void set_rappor_service_for_testing(rappor::RapporService* rappor_service);
+ void set_rappor_service_for_testing(
+ rappor::RapporServiceImpl* rappor_service);
private:
explicit NavigationMetricsRecorder(content::WebContents* web_contents);
@@ -30,7 +31,7 @@ class NavigationMetricsRecorder
const content::LoadCommittedDetails& details,
const content::FrameNavigateParams& params) override;
- rappor::RapporService* rappor_service_;
+ rappor::RapporServiceImpl* rappor_service_;
DISALLOW_COPY_AND_ASSIGN(NavigationMetricsRecorder);
};

Powered by Google App Engine
This is Rietveld 408576698