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

Unified Diff: components/autofill/core/browser/test_autofill_client.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/autofill/core/browser/test_autofill_client.h
diff --git a/components/autofill/core/browser/test_autofill_client.h b/components/autofill/core/browser/test_autofill_client.h
index 31f641c1cbbbdde26507437ba564b020b4d26ca7..95311d7b48b402d9abe17a931c488adc248178e7 100644
--- a/components/autofill/core/browser/test_autofill_client.h
+++ b/components/autofill/core/browser/test_autofill_client.h
@@ -33,7 +33,7 @@ class TestAutofillClient : public AutofillClient {
PrefService* GetPrefs() override;
syncer::SyncService* GetSyncService() override;
IdentityProvider* GetIdentityProvider() override;
- rappor::RapporService* GetRapporService() override;
+ rappor::RapporServiceImpl* GetRapporServiceImpl() override;
void ShowAutofillSettings() override;
void ShowUnmaskPrompt(const CreditCard& card,
UnmaskCardReason reason,
@@ -76,7 +76,7 @@ class TestAutofillClient : public AutofillClient {
prefs_ = std::move(prefs);
}
- rappor::TestRapporService* test_rappor_service() {
+ rappor::TestRapporServiceImpl* test_rappor_service() {
return rappor_service_.get();
}
@@ -85,7 +85,7 @@ class TestAutofillClient : public AutofillClient {
std::unique_ptr<PrefService> prefs_;
std::unique_ptr<FakeOAuth2TokenService> token_service_;
std::unique_ptr<FakeIdentityProvider> identity_provider_;
- std::unique_ptr<rappor::TestRapporService> rappor_service_;
+ std::unique_ptr<rappor::TestRapporServiceImpl> rappor_service_;
DISALLOW_COPY_AND_ASSIGN(TestAutofillClient);
};

Powered by Google App Engine
This is Rietveld 408576698