diff options
author | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-22 22:49:11 +0000 |
---|---|---|
committer | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-22 22:49:11 +0000 |
commit | 2739e0ecdd8de58da5ea3577c22c5584951bfbb5 (patch) | |
tree | c49ee87b85e918115acbab71994006f611dc13f3 /webkit/glue/form_field.h | |
parent | 00c794adf30fcc7d84f60a0f23d1e69e063410f3 (diff) | |
download | chromium_src-2739e0ecdd8de58da5ea3577c22c5584951bfbb5.zip chromium_src-2739e0ecdd8de58da5ea3577c22c5584951bfbb5.tar.gz chromium_src-2739e0ecdd8de58da5ea3577c22c5584951bfbb5.tar.bz2 |
Moving AutofillAgent Logic into Browser
This is the first attempt at moving some of the Autofill logic out of the
autofillagent in the renderer and into the external delegate in the browser.
I just focused on OnSuggestionsReturned, so the browser side should be able to
correcrtly create the list of suggestions to show. There are still features that
need to be moved, such as the ability to select an item, which I will address in
future cls.
BUG=51644
TEST=
Review URL: http://codereview.chromium.org/8488011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111240 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/form_field.h')
-rw-r--r-- | webkit/glue/form_field.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webkit/glue/form_field.h b/webkit/glue/form_field.h index 06cd202..58a8653 100644 --- a/webkit/glue/form_field.h +++ b/webkit/glue/form_field.h @@ -31,6 +31,8 @@ struct FormField { string16 autocomplete_type; size_t max_length; bool is_autofilled; + bool is_focusable; + bool should_autocomplete; // For the HTML snippet |<option value="US">United States</option>|, the // value is "US" and the contents are "United States". |