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

Unified Diff: components/rappor/rappor_recorder_impl.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/rappor/rappor_recorder_impl.h
diff --git a/components/rappor/rappor_recorder_impl.h b/components/rappor/rappor_recorder_impl.h
index d558a274c87afecda6019745e295f1dfb627d310..103b4cd03586a08e47011f1be46a61f55b6d24fa 100644
--- a/components/rappor/rappor_recorder_impl.h
+++ b/components/rappor/rappor_recorder_impl.h
@@ -12,16 +12,16 @@ class GURL;
namespace rappor {
-class RapporService;
+class RapporServiceImpl;
// Records aggregate, privacy-preserving samples from the renderers.
// See https://www.chromium.org/developers/design-documents/rappor
class RapporRecorderImpl : public mojom::RapporRecorder {
public:
- explicit RapporRecorderImpl(RapporService* rappor_service);
+ explicit RapporRecorderImpl(RapporServiceImpl* rappor_service);
~RapporRecorderImpl() override;
- static void Create(RapporService* rappor_service,
+ static void Create(RapporServiceImpl* rappor_service,
mojom::RapporRecorderRequest request);
private:
@@ -30,7 +30,7 @@ class RapporRecorderImpl : public mojom::RapporRecorder {
const std::string& sample) override;
void RecordRapporURL(const std::string& metric, const GURL& sample) override;
- RapporService* rappor_service_;
+ RapporServiceImpl* rappor_service_;
base::ThreadChecker thread_checker_;
DISALLOW_COPY_AND_ASSIGN(RapporRecorderImpl);

Powered by Google App Engine
This is Rietveld 408576698