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/native/aw_contents.h" | 10 #include "android_webview/native/aw_contents.h" |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 NOTIMPLEMENTED(); | 234 NOTIMPLEMENTED(); |
235 } | 235 } |
236 | 236 |
237 void AwAutofillClient::ConfirmSaveCreditCardToCloud( | 237 void AwAutofillClient::ConfirmSaveCreditCardToCloud( |
238 const autofill::CreditCard& card, | 238 const autofill::CreditCard& card, |
239 std::unique_ptr<base::DictionaryValue> legal_message, | 239 std::unique_ptr<base::DictionaryValue> legal_message, |
240 const base::Closure& callback) { | 240 const base::Closure& callback) { |
241 NOTIMPLEMENTED(); | 241 NOTIMPLEMENTED(); |
242 } | 242 } |
243 | 243 |
| 244 void AwAutofillClient::ConfirmCreditCardFillAssist( |
| 245 const autofill::CreditCard& card, |
| 246 const base::Closure& callback) { |
| 247 NOTIMPLEMENTED(); |
| 248 } |
| 249 |
244 void AwAutofillClient::LoadRiskData( | 250 void AwAutofillClient::LoadRiskData( |
245 const base::Callback<void(const std::string&)>& callback) { | 251 const base::Callback<void(const std::string&)>& callback) { |
246 NOTIMPLEMENTED(); | 252 NOTIMPLEMENTED(); |
247 } | 253 } |
248 | 254 |
249 bool AwAutofillClient::HasCreditCardScanFeature() { | 255 bool AwAutofillClient::HasCreditCardScanFeature() { |
250 return false; | 256 return false; |
251 } | 257 } |
252 | 258 |
253 void AwAutofillClient::ScanCreditCard(const CreditCardScanCallback& callback) { | 259 void AwAutofillClient::ScanCreditCard(const CreditCardScanCallback& callback) { |
254 NOTIMPLEMENTED(); | 260 NOTIMPLEMENTED(); |
255 } | 261 } |
256 | 262 |
257 bool RegisterAwAutofillClient(JNIEnv* env) { | 263 bool RegisterAwAutofillClient(JNIEnv* env) { |
258 return RegisterNativesImpl(env); | 264 return RegisterNativesImpl(env); |
259 } | 265 } |
260 | 266 |
261 } // namespace android_webview | 267 } // namespace android_webview |
OLD | NEW |