Index: components/autofill/core/browser/autofill_client.h |
diff --git a/components/autofill/core/browser/autofill_client.h b/components/autofill/core/browser/autofill_client.h |
index a1faf806503048b97230ab5c6003e3fa94b993da..58b2913fea8527206d7b87cbc9db470134e97aad 100644 |
--- a/components/autofill/core/browser/autofill_client.h |
+++ b/components/autofill/core/browser/autofill_client.h |
@@ -120,12 +120,14 @@ class AutofillClient { |
// Runs |callback| if the credit card should be imported as personal |
// data. |metric_logger| can be used to log user actions. |
- virtual void ConfirmSaveCreditCardLocally(const base::Closure& callback) = 0; |
+ virtual void ConfirmSaveCreditCardLocally(const base::Closure& callback, |
+ const CreditCard& card) = 0; |
Justin Donnelly
2015/12/30 18:06:37
You'll need to also make these changes to aw_autof
please use gerrit instead
2016/01/07 01:39:25
Done.
|
// Runs |callback| if the credit card should be uploaded to Payments. Displays |
// the contents of |legal_message| to the user. |
virtual void ConfirmSaveCreditCardToCloud( |
const base::Closure& callback, |
+ const CreditCard& card, |
scoped_ptr<base::DictionaryValue> legal_message) = 0; |
// Gathers risk data and provides it to |callback|. |