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 rappor::RapporService
* GetRapporService() override
;
64 void HideRequestAutocompleteDialog() override
;
65 void ShowAutofillSettings() override
;
66 void ShowUnmaskPrompt(
67 const autofill::CreditCard
& card
,
68 base::WeakPtr
<autofill::CardUnmaskDelegate
> delegate
) override
;
69 void OnUnmaskVerificationResult(GetRealPanResult result
) override
;
70 void ConfirmSaveCreditCard(const base::Closure
& save_card_callback
) override
;
71 bool HasCreditCardScanFeature() override
;
72 void ScanCreditCard(const CreditCardScanCallback
& callback
) override
;
73 void ShowRequestAutocompleteDialog(const autofill::FormData
& form
,
74 content::RenderFrameHost
* rfh
,
75 const ResultCallback
& callback
) override
;
76 void ShowAutofillPopup(
77 const gfx::RectF
& element_bounds
,
78 base::i18n::TextDirection text_direction
,
79 const std::vector
<autofill::Suggestion
>& suggestions
,
80 base::WeakPtr
<autofill::AutofillPopupDelegate
> delegate
) override
;
81 void UpdateAutofillPopupDataListValues(
82 const std::vector
<base::string16
>& values
,
83 const std::vector
<base::string16
>& labels
) override
;
84 void HideAutofillPopup() override
;
85 bool IsAutocompleteEnabled() override
;
86 void PropagateAutofillPredictions(
87 content::RenderFrameHost
* rfh
,
88 const std::vector
<autofill::FormStructure
*>& forms
) override
;
89 void DidFillOrPreviewField(const base::string16
& autofilled_value
,
90 const base::string16
& profile_full_name
) override
;
91 void OnFirstUserGestureObserved() override
;
92 void LinkClicked(const GURL
& url
, WindowOpenDisposition disposition
) override
;
94 void SuggestionSelected(JNIEnv
* env
, jobject obj
, jint position
);
97 AwAutofillClient(content::WebContents
* web_contents
);
98 friend class content::WebContentsUserData
<AwAutofillClient
>;
100 void ShowAutofillPopupImpl(
101 const gfx::RectF
& element_bounds
,
103 const std::vector
<autofill::Suggestion
>& suggestions
);
105 // The web_contents associated with this delegate.
106 content::WebContents
* web_contents_
;
107 bool save_form_data_
;
108 JavaObjectWeakGlobalRef java_ref_
;
110 // The current Autofill query values.
111 std::vector
<autofill::Suggestion
> suggestions_
;
112 base::WeakPtr
<autofill::AutofillPopupDelegate
> delegate_
;
114 DISALLOW_COPY_AND_ASSIGN(AwAutofillClient
);
117 bool RegisterAwAutofillClient(JNIEnv
* env
);
119 } // namespace android_webview
121 #endif // ANDROID_WEBVIEW_NATIVE_AW_AUTOFILL_CLIENT_H_