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
3 // found in the LICENSE file.
5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_
6 #define ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_
11 #include "base/android/jni_weak_ref.h"
12 #include "base/basictypes.h"
13 #include "base/compiler_specific.h"
14 #include "base/prefs/pref_registry_simple.h"
15 #include "base/prefs/pref_service_factory.h"
16 #include "components/autofill/core/browser/autofill_client.h"
17 #include "content/public/browser/web_contents_user_data.h"
20 class AutofillMetrics
;
21 class AutofillPopupDelegate
;
22 class CardUnmaskDelegate
;
25 class PasswordGenerator
;
26 class PersonalDataManager
;
38 class PersonalDataManager
;
41 namespace android_webview
{
43 // Manager delegate for the autofill functionality. Android webview
44 // supports enabling autocomplete feature for each webview instance
45 // (different than the browser which supports enabling/disabling for
46 // a profile). Since there is only one pref service for a given browser
47 // context, we cannot enable this feature via UserPrefs. Rather, we always
48 // keep the feature enabled at the pref service, and control it via
50 class AwAutofillClient
: public autofill::AutofillClient
,
51 public content::WebContentsUserData
<AwAutofillClient
> {
53 ~AwAutofillClient() override
;
55 void SetSaveFormData(bool enabled
);
56 bool GetSaveFormData();
59 autofill::PersonalDataManager
* GetPersonalDataManager() override
;
60 scoped_refptr
<autofill::AutofillWebDataService
> GetDatabase() override
;
61 PrefService
* GetPrefs() override
;
62 IdentityProvider
* GetIdentityProvider() override
;
63 void HideRequestAutocompleteDialog() override
;
64 void ShowAutofillSettings() override
;
65 void ShowUnmaskPrompt(
66 const autofill::CreditCard
& card
,
67 base::WeakPtr
<autofill::CardUnmaskDelegate
> delegate
) override
;
68 void OnUnmaskVerificationResult(bool success
) override
;
69 void ConfirmSaveCreditCard(const base::Closure
& save_card_callback
) override
;
70 bool HasCreditCardScanFeature() override
;
71 void ScanCreditCard(const CreditCardScanCallback
& callback
) override
;
72 void ShowRequestAutocompleteDialog(const autofill::FormData
& form
,
73 content::RenderFrameHost
* rfh
,
74 const ResultCallback
& callback
) override
;
75 void ShowAutofillPopup(
76 const gfx::RectF
& element_bounds
,
77 base::i18n::TextDirection text_direction
,
78 const std::vector
<autofill::Suggestion
>& suggestions
,
79 base::WeakPtr
<autofill::AutofillPopupDelegate
> delegate
) override
;
80 void UpdateAutofillPopupDataListValues(
81 const std::vector
<base::string16
>& values
,
82 const std::vector
<base::string16
>& labels
) override
;
83 void HideAutofillPopup() override
;
84 bool IsAutocompleteEnabled() override
;
85 void DetectAccountCreationForms(
86 content::RenderFrameHost
* rfh
,
87 const std::vector
<autofill::FormStructure
*>& forms
) override
;
88 void DidFillOrPreviewField(const base::string16
& autofilled_value
,
89 const base::string16
& profile_full_name
) override
;
90 void OnFirstUserGestureObserved() override
;
91 void LinkClicked(const GURL
& url
, WindowOpenDisposition disposition
) override
;
93 void SuggestionSelected(JNIEnv
* env
, jobject obj
, jint position
);
96 AwAutofillClient(content::WebContents
* web_contents
);
97 friend class content::WebContentsUserData
<AwAutofillClient
>;
99 void ShowAutofillPopupImpl(
100 const gfx::RectF
& element_bounds
,
102 const std::vector
<autofill::Suggestion
>& suggestions
);
104 // The web_contents associated with this delegate.
105 content::WebContents
* web_contents_
;
106 bool save_form_data_
;
107 JavaObjectWeakGlobalRef java_ref_
;
109 // The current Autofill query values.
110 std::vector
<autofill::Suggestion
> suggestions_
;
111 base::WeakPtr
<autofill::AutofillPopupDelegate
> delegate_
;
113 DISALLOW_COPY_AND_ASSIGN(AwAutofillClient
);
116 bool RegisterAwAutofillClient(JNIEnv
* env
);
118 } // namespace android_webview
120 #endif // ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_