| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 } | 180 } |
| 181 | 181 |
| 182 void AwAutofillClient::HideRequestAutocompleteDialog() { | 182 void AwAutofillClient::HideRequestAutocompleteDialog() { |
| 183 NOTIMPLEMENTED(); | 183 NOTIMPLEMENTED(); |
| 184 } | 184 } |
| 185 | 185 |
| 186 void AwAutofillClient::ShowAutofillSettings() { | 186 void AwAutofillClient::ShowAutofillSettings() { |
| 187 NOTIMPLEMENTED(); | 187 NOTIMPLEMENTED(); |
| 188 } | 188 } |
| 189 | 189 |
| 190 void AwAutofillClient::ShowUnmaskPrompt() { |
| 191 NOTIMPLEMENTED(); |
| 192 } |
| 193 |
| 190 void AwAutofillClient::ConfirmSaveCreditCard( | 194 void AwAutofillClient::ConfirmSaveCreditCard( |
| 191 const base::Closure& save_card_callback) { | 195 const base::Closure& save_card_callback) { |
| 192 NOTIMPLEMENTED(); | 196 NOTIMPLEMENTED(); |
| 193 } | 197 } |
| 194 | 198 |
| 195 bool AwAutofillClient::HasCreditCardScanFeature() { | 199 bool AwAutofillClient::HasCreditCardScanFeature() { |
| 196 return false; | 200 return false; |
| 197 } | 201 } |
| 198 | 202 |
| 199 void AwAutofillClient::ScanCreditCard(const CreditCardScanCallback& callback) { | 203 void AwAutofillClient::ScanCreditCard(const CreditCardScanCallback& callback) { |
| 200 NOTIMPLEMENTED(); | 204 NOTIMPLEMENTED(); |
| 201 } | 205 } |
| 202 | 206 |
| 203 void AwAutofillClient::ShowRequestAutocompleteDialog( | 207 void AwAutofillClient::ShowRequestAutocompleteDialog( |
| 204 const autofill::FormData& form, | 208 const autofill::FormData& form, |
| 205 const GURL& source_url, | 209 const GURL& source_url, |
| 206 const ResultCallback& callback) { | 210 const ResultCallback& callback) { |
| 207 NOTIMPLEMENTED(); | 211 NOTIMPLEMENTED(); |
| 208 } | 212 } |
| 209 | 213 |
| 210 bool RegisterAwAutofillClient(JNIEnv* env) { | 214 bool RegisterAwAutofillClient(JNIEnv* env) { |
| 211 return RegisterNativesImpl(env); | 215 return RegisterNativesImpl(env); |
| 212 } | 216 } |
| 213 | 217 |
| 214 } // namespace android_webview | 218 } // namespace android_webview |
| OLD | NEW |