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

Unified Diff: components/rappor/test_rappor_service.h

Issue 2510803003: Pass RapporService to content/browser/ (Closed)
Patch Set: Fix an Android compile error 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/test_rappor_service.h
diff --git a/components/rappor/test_rappor_service.h b/components/rappor/test_rappor_service.h
index 01a850ccd502f9812efa7eae6ee7a95465e55461..99ee44f34b110873f1f7a1b6b3bf5aca5f7cfa9e 100644
--- a/components/rappor/test_rappor_service.h
+++ b/components/rappor/test_rappor_service.h
@@ -59,11 +59,11 @@ class TestRapporService : public RapporService {
// RapporService:
std::unique_ptr<Sample> CreateSample(RapporType type) override;
- void RecordSampleObj(const std::string& metric_name,
- std::unique_ptr<Sample> sample) override;
void RecordSample(const std::string& metric_name,
- RapporType type,
- const std::string& sample) override;
+ std::unique_ptr<Sample> sample) override;
+ void RecordSampleString(const std::string& metric_name,
+ RapporType type,
+ const std::string& sample) override;
// Gets the number of reports that would be uploaded by this service.
// This also clears the internal map of metrics as a biproduct, so if

Powered by Google App Engine
This is Rietveld 408576698