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

Unified Diff: components/autofill/core/browser/test_autofill_client.cc

Issue 873583007: Add OAuth2 token to RealPanRequest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ) Created 5 years, 11 months 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.cc
diff --git a/components/autofill/core/browser/test_autofill_client.cc b/components/autofill/core/browser/test_autofill_client.cc
index 34523ddc91eddfc8bf15d85ceeed756335fb372a..e193a3aed40731d11a258413292f694a9db352a1 100644
--- a/components/autofill/core/browser/test_autofill_client.cc
+++ b/components/autofill/core/browser/test_autofill_client.cc
@@ -14,17 +14,21 @@ TestAutofillClient::~TestAutofillClient() {
}
PersonalDataManager* TestAutofillClient::GetPersonalDataManager() {
- return NULL;
+ return nullptr;
}
scoped_refptr<AutofillWebDataService> TestAutofillClient::GetDatabase() {
- return scoped_refptr<AutofillWebDataService>(NULL);
+ return scoped_refptr<AutofillWebDataService>(nullptr);
}
PrefService* TestAutofillClient::GetPrefs() {
return prefs_.get();
}
+IdentityProvider* TestAutofillClient::GetIdentityProvider() {
+ return nullptr;
+}
+
void TestAutofillClient::HideRequestAutocompleteDialog() {
}

Powered by Google App Engine
This is Rietveld 408576698