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 f6c2278177e3fbd9615e53510a5fd9f70d038ffb..ec87028c476a3619ad0515ecb549a3dd025272f1 100644 |
--- a/components/autofill/core/browser/test_autofill_client.cc |
+++ b/components/autofill/core/browser/test_autofill_client.cc |
@@ -14,6 +14,7 @@ TestAutofillClient::TestAutofillClient() |
rappor_service_(new rappor::TestRapporService()), |
is_context_secure_(true) { |
} |
+ |
TestAutofillClient::~TestAutofillClient() { |
} |
@@ -48,14 +49,18 @@ void TestAutofillClient::ShowUnmaskPrompt( |
base::WeakPtr<CardUnmaskDelegate> delegate) { |
} |
-void TestAutofillClient::OnUnmaskVerificationResult(PaymentsRpcResult result) {} |
+void TestAutofillClient::OnUnmaskVerificationResult(PaymentsRpcResult result) { |
+} |
void TestAutofillClient::ConfirmSaveCreditCardLocally( |
- const base::Closure& callback) {} |
+ const CreditCard& card, |
+ const base::Closure& callback) { |
+} |
void TestAutofillClient::ConfirmSaveCreditCardToCloud( |
- const base::Closure& callback, |
- scoped_ptr<base::DictionaryValue> legal_message) { |
+ const CreditCard& card, |
+ scoped_ptr<base::DictionaryValue> legal_message, |
+ const base::Closure& callback) { |
callback.Run(); |
} |
@@ -113,4 +118,5 @@ void TestAutofillClient::OnFirstUserGestureObserved() { |
bool TestAutofillClient::IsContextSecure(const GURL& form_origin) { |
return is_context_secure_; |
} |
+ |
} // namespace autofill |