| 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 #ifndef ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_ | 5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_ |
| 6 #define ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_ | 6 #define ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 bool GetSaveFormData(); | 55 bool GetSaveFormData(); |
| 56 | 56 |
| 57 // AutofillClient: | 57 // AutofillClient: |
| 58 virtual autofill::PersonalDataManager* GetPersonalDataManager() override; | 58 virtual autofill::PersonalDataManager* GetPersonalDataManager() override; |
| 59 virtual scoped_refptr<autofill::AutofillWebDataService> GetDatabase() | 59 virtual scoped_refptr<autofill::AutofillWebDataService> GetDatabase() |
| 60 override; | 60 override; |
| 61 virtual PrefService* GetPrefs() override; | 61 virtual PrefService* GetPrefs() override; |
| 62 virtual void HideRequestAutocompleteDialog() override; | 62 virtual void HideRequestAutocompleteDialog() override; |
| 63 virtual void ShowAutofillSettings() override; | 63 virtual void ShowAutofillSettings() override; |
| 64 virtual void ConfirmSaveCreditCard( | 64 virtual void ConfirmSaveCreditCard( |
| 65 const autofill::AutofillMetrics& metric_logger, |
| 65 const base::Closure& save_card_callback) override; | 66 const base::Closure& save_card_callback) override; |
| 66 virtual bool HasCreditCardScanFeature() override; | 67 virtual bool HasCreditCardScanFeature() override; |
| 67 virtual void ScanCreditCard(const CreditCardScanCallback& callback) override; | 68 virtual void ScanCreditCard(const CreditCardScanCallback& callback) override; |
| 68 virtual void ShowRequestAutocompleteDialog( | 69 virtual void ShowRequestAutocompleteDialog( |
| 69 const autofill::FormData& form, | 70 const autofill::FormData& form, |
| 70 const GURL& source_url, | 71 const GURL& source_url, |
| 71 const ResultCallback& callback) override; | 72 const ResultCallback& callback) override; |
| 72 virtual void ShowAutofillPopup( | 73 virtual void ShowAutofillPopup( |
| 73 const gfx::RectF& element_bounds, | 74 const gfx::RectF& element_bounds, |
| 74 base::i18n::TextDirection text_direction, | 75 base::i18n::TextDirection text_direction, |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 base::WeakPtr<autofill::AutofillPopupDelegate> delegate_; | 114 base::WeakPtr<autofill::AutofillPopupDelegate> delegate_; |
| 114 | 115 |
| 115 DISALLOW_COPY_AND_ASSIGN(AwAutofillClient); | 116 DISALLOW_COPY_AND_ASSIGN(AwAutofillClient); |
| 116 }; | 117 }; |
| 117 | 118 |
| 118 bool RegisterAwAutofillClient(JNIEnv* env); | 119 bool RegisterAwAutofillClient(JNIEnv* env); |
| 119 | 120 |
| 120 } // namespace android_webview | 121 } // namespace android_webview |
| 121 | 122 |
| 122 #endif // ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_ | 123 #endif // ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_ |
| OLD | NEW |