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 #include "android_webview/native/aw_autofill_client.h" | 5 #include "android_webview/native/aw_autofill_client.h" |
6 | 6 |
7 #include "android_webview/browser/aw_browser_context.h" | 7 #include "android_webview/browser/aw_browser_context.h" |
8 #include "android_webview/browser/aw_content_browser_client.h" | 8 #include "android_webview/browser/aw_content_browser_client.h" |
9 #include "android_webview/browser/aw_form_database_service.h" | 9 #include "android_webview/browser/aw_form_database_service.h" |
10 #include "android_webview/browser/aw_pref_store.h" | 10 #include "android_webview/browser/aw_pref_store.h" |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 void AwAutofillClient::ShowAutofillSettings() { | 192 void AwAutofillClient::ShowAutofillSettings() { |
193 NOTIMPLEMENTED(); | 193 NOTIMPLEMENTED(); |
194 } | 194 } |
195 | 195 |
196 void AwAutofillClient::ShowUnmaskPrompt( | 196 void AwAutofillClient::ShowUnmaskPrompt( |
197 const autofill::CreditCard& card, | 197 const autofill::CreditCard& card, |
198 base::WeakPtr<autofill::CardUnmaskDelegate> delegate) { | 198 base::WeakPtr<autofill::CardUnmaskDelegate> delegate) { |
199 NOTIMPLEMENTED(); | 199 NOTIMPLEMENTED(); |
200 } | 200 } |
201 | 201 |
202 void AwAutofillClient::OnUnmaskVerificationResult(bool success) { | 202 void AwAutofillClient::OnUnmaskVerificationResult(GetRealPanResult result) { |
203 NOTIMPLEMENTED(); | 203 NOTIMPLEMENTED(); |
204 } | 204 } |
205 | 205 |
206 void AwAutofillClient::ConfirmSaveCreditCard( | 206 void AwAutofillClient::ConfirmSaveCreditCard( |
207 const base::Closure& save_card_callback) { | 207 const base::Closure& save_card_callback) { |
208 NOTIMPLEMENTED(); | 208 NOTIMPLEMENTED(); |
209 } | 209 } |
210 | 210 |
211 bool AwAutofillClient::HasCreditCardScanFeature() { | 211 bool AwAutofillClient::HasCreditCardScanFeature() { |
212 return false; | 212 return false; |
213 } | 213 } |
214 | 214 |
215 void AwAutofillClient::ScanCreditCard(const CreditCardScanCallback& callback) { | 215 void AwAutofillClient::ScanCreditCard(const CreditCardScanCallback& callback) { |
216 NOTIMPLEMENTED(); | 216 NOTIMPLEMENTED(); |
217 } | 217 } |
218 | 218 |
219 void AwAutofillClient::ShowRequestAutocompleteDialog( | 219 void AwAutofillClient::ShowRequestAutocompleteDialog( |
220 const autofill::FormData& form, | 220 const autofill::FormData& form, |
221 content::RenderFrameHost* rfh, | 221 content::RenderFrameHost* rfh, |
222 const ResultCallback& callback) { | 222 const ResultCallback& callback) { |
223 NOTIMPLEMENTED(); | 223 NOTIMPLEMENTED(); |
224 } | 224 } |
225 | 225 |
226 bool RegisterAwAutofillClient(JNIEnv* env) { | 226 bool RegisterAwAutofillClient(JNIEnv* env) { |
227 return RegisterNativesImpl(env); | 227 return RegisterNativesImpl(env); |
228 } | 228 } |
229 | 229 |
230 } // namespace android_webview | 230 } // namespace android_webview |
OLD | NEW |