OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_ |
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
113 virtual void ShowAutofillSettings() = 0; | 113 virtual void ShowAutofillSettings() = 0; |
114 | 114 |
115 // A user has attempted to use a masked card. Prompt them for further | 115 // A user has attempted to use a masked card. Prompt them for further |
116 // information to proceed. | 116 // information to proceed. |
117 virtual void ShowUnmaskPrompt(const CreditCard& card, | 117 virtual void ShowUnmaskPrompt(const CreditCard& card, |
118 base::WeakPtr<CardUnmaskDelegate> delegate) = 0; | 118 base::WeakPtr<CardUnmaskDelegate> delegate) = 0; |
119 virtual void OnUnmaskVerificationResult(PaymentsRpcResult result) = 0; | 119 virtual void OnUnmaskVerificationResult(PaymentsRpcResult result) = 0; |
120 | 120 |
121 // Runs |callback| if the credit card should be imported as personal | 121 // Runs |callback| if the credit card should be imported as personal |
122 // data. |metric_logger| can be used to log user actions. | 122 // data. |metric_logger| can be used to log user actions. |
123 virtual void ConfirmSaveCreditCardLocally(const base::Closure& callback) = 0; | 123 virtual void ConfirmSaveCreditCardLocally(const base::Closure& callback, |
124 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.
| |
124 | 125 |
125 // Runs |callback| if the credit card should be uploaded to Payments. Displays | 126 // Runs |callback| if the credit card should be uploaded to Payments. Displays |
126 // the contents of |legal_message| to the user. | 127 // the contents of |legal_message| to the user. |
127 virtual void ConfirmSaveCreditCardToCloud( | 128 virtual void ConfirmSaveCreditCardToCloud( |
128 const base::Closure& callback, | 129 const base::Closure& callback, |
130 const CreditCard& card, | |
129 scoped_ptr<base::DictionaryValue> legal_message) = 0; | 131 scoped_ptr<base::DictionaryValue> legal_message) = 0; |
130 | 132 |
131 // Gathers risk data and provides it to |callback|. | 133 // Gathers risk data and provides it to |callback|. |
132 virtual void LoadRiskData( | 134 virtual void LoadRiskData( |
133 const base::Callback<void(const std::string&)>& callback) = 0; | 135 const base::Callback<void(const std::string&)>& callback) = 0; |
134 | 136 |
135 // Returns true if both the platform and the device support scanning credit | 137 // Returns true if both the platform and the device support scanning credit |
136 // cards. Should be called before ScanCreditCard(). | 138 // cards. Should be called before ScanCreditCard(). |
137 virtual bool HasCreditCardScanFeature() = 0; | 139 virtual bool HasCreditCardScanFeature() = 0; |
138 | 140 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
181 // Informs the client that a user gesture has been observed. | 183 // Informs the client that a user gesture has been observed. |
182 virtual void OnFirstUserGestureObserved() = 0; | 184 virtual void OnFirstUserGestureObserved() = 0; |
183 | 185 |
184 // If the context is secure. | 186 // If the context is secure. |
185 virtual bool IsContextSecure(const GURL& form_origin) = 0; | 187 virtual bool IsContextSecure(const GURL& form_origin) = 0; |
186 }; | 188 }; |
187 | 189 |
188 } // namespace autofill | 190 } // namespace autofill |
189 | 191 |
190 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_ | 192 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_ |
OLD | NEW |