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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 } | 72 } |
73 | 73 |
74 syncer::SyncService* AwAutofillClient::GetSyncService() { | 74 syncer::SyncService* AwAutofillClient::GetSyncService() { |
75 return nullptr; | 75 return nullptr; |
76 } | 76 } |
77 | 77 |
78 IdentityProvider* AwAutofillClient::GetIdentityProvider() { | 78 IdentityProvider* AwAutofillClient::GetIdentityProvider() { |
79 return nullptr; | 79 return nullptr; |
80 } | 80 } |
81 | 81 |
82 rappor::RapporService* AwAutofillClient::GetRapporService() { | 82 rappor::RapporServiceImpl* AwAutofillClient::GetRapporServiceImpl() { |
83 return nullptr; | 83 return nullptr; |
84 } | 84 } |
85 | 85 |
86 autofill::PersonalDataManager* AwAutofillClient::GetPersonalDataManager() { | 86 autofill::PersonalDataManager* AwAutofillClient::GetPersonalDataManager() { |
87 return nullptr; | 87 return nullptr; |
88 } | 88 } |
89 | 89 |
90 scoped_refptr<autofill::AutofillWebDataService> | 90 scoped_refptr<autofill::AutofillWebDataService> |
91 AwAutofillClient::GetDatabase() { | 91 AwAutofillClient::GetDatabase() { |
92 android_webview::AwFormDatabaseService* service = | 92 android_webview::AwFormDatabaseService* service = |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 | 272 |
273 void AwAutofillClient::ScanCreditCard(const CreditCardScanCallback& callback) { | 273 void AwAutofillClient::ScanCreditCard(const CreditCardScanCallback& callback) { |
274 NOTIMPLEMENTED(); | 274 NOTIMPLEMENTED(); |
275 } | 275 } |
276 | 276 |
277 bool RegisterAwAutofillClient(JNIEnv* env) { | 277 bool RegisterAwAutofillClient(JNIEnv* env) { |
278 return RegisterNativesImpl(env); | 278 return RegisterNativesImpl(env); |
279 } | 279 } |
280 | 280 |
281 } // namespace android_webview | 281 } // namespace android_webview |
OLD | NEW |