OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AwAutofillClient
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/android_webview/native/
aw_autofill_client.h
49
class
AwAutofillClient
: public autofill::AutofillClient,
50
public content::WebContentsUserData<
AwAutofillClient
> {
52
virtual ~
AwAutofillClient
();
93
AwAutofillClient
(content::WebContents* web_contents);
94
friend class content::WebContentsUserData<
AwAutofillClient
>;
112
DISALLOW_COPY_AND_ASSIGN(
AwAutofillClient
);
aw_autofill_client.cc
31
DEFINE_WEB_CONTENTS_USER_DATA_KEY(android_webview::
AwAutofillClient
);
39
AwAutofillClient
::
AwAutofillClient
(WebContents* contents)
51
AwAutofillClient
::~
AwAutofillClient
() {
55
void
AwAutofillClient
::SetSaveFormData(bool enabled) {
59
bool
AwAutofillClient
::GetSaveFormData() {
63
PrefService*
AwAutofillClient
::GetPrefs() {
68
autofill::PersonalDataManager*
AwAutofillClient
::GetPersonalDataManager() {
73
AwAutofillClient
::GetDatabase()
[
all
...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwAutofillClient.java
16
* Java counterpart to the
AwAutofillClient
. This class is owned by AwContents and has
20
public class
AwAutofillClient
{
28
public static
AwAutofillClient
create(long nativeClient) {
29
return new
AwAutofillClient
(nativeClient);
32
private
AwAutofillClient
(long nativeAwAutofillClient) {
Completed in 40 milliseconds