| 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/browser/aw_autofill_client.h" | 5 #include "android_webview/browser/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_contents.h" | 9 #include "android_webview/browser/aw_contents.h" |
| 10 #include "android_webview/browser/aw_form_database_service.h" | 10 #include "android_webview/browser/aw_form_database_service.h" |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 } | 76 } |
| 77 | 77 |
| 78 IdentityProvider* AwAutofillClient::GetIdentityProvider() { | 78 IdentityProvider* AwAutofillClient::GetIdentityProvider() { |
| 79 return nullptr; | 79 return nullptr; |
| 80 } | 80 } |
| 81 | 81 |
| 82 rappor::RapporServiceImpl* AwAutofillClient::GetRapporServiceImpl() { | 82 rappor::RapporServiceImpl* AwAutofillClient::GetRapporServiceImpl() { |
| 83 return nullptr; | 83 return nullptr; |
| 84 } | 84 } |
| 85 | 85 |
| 86 ukm::UkmService* AwAutofillClient::GetUkmService() { | 86 ukm::UkmRecorder* AwAutofillClient::GetUkmRecorder() { |
| 87 return nullptr; | 87 return nullptr; |
| 88 } | 88 } |
| 89 | 89 |
| 90 autofill::SaveCardBubbleController* | 90 autofill::SaveCardBubbleController* |
| 91 AwAutofillClient::GetSaveCardBubbleController() { | 91 AwAutofillClient::GetSaveCardBubbleController() { |
| 92 return nullptr; | 92 return nullptr; |
| 93 } | 93 } |
| 94 | 94 |
| 95 autofill::PersonalDataManager* AwAutofillClient::GetPersonalDataManager() { | 95 autofill::PersonalDataManager* AwAutofillClient::GetPersonalDataManager() { |
| 96 return nullptr; | 96 return nullptr; |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 | 279 |
| 280 void AwAutofillClient::ScanCreditCard(const CreditCardScanCallback& callback) { | 280 void AwAutofillClient::ScanCreditCard(const CreditCardScanCallback& callback) { |
| 281 NOTIMPLEMENTED(); | 281 NOTIMPLEMENTED(); |
| 282 } | 282 } |
| 283 | 283 |
| 284 bool RegisterAwAutofillClient(JNIEnv* env) { | 284 bool RegisterAwAutofillClient(JNIEnv* env) { |
| 285 return RegisterNativesImpl(env); | 285 return RegisterNativesImpl(env); |
| 286 } | 286 } |
| 287 | 287 |
| 288 } // namespace android_webview | 288 } // namespace android_webview |
| OLD | NEW |