diff options
author | Ben Murdoch <benm@google.com> | 2010-08-06 12:08:59 +0100 |
---|---|---|
committer | Ben Murdoch <benm@google.com> | 2010-09-13 15:04:09 +0100 |
commit | 7d214dfa174224b459660971e5b5cce2e06be02a (patch) | |
tree | 8bf36887488cddf26cb43e0394ba35972b5cfefa /webkit | |
parent | f74420b3285b9fe04a7e00aa3b8c0ab07ea344bc (diff) | |
download | external_chromium-7d214dfa174224b459660971e5b5cce2e06be02a.zip external_chromium-7d214dfa174224b459660971e5b5cce2e06be02a.tar.gz external_chromium-7d214dfa174224b459660971e5b5cce2e06be02a.tar.bz2 |
Intial set of changes to enable autofill on Android.
This is the initial checkin of AutoFill code into external/chromium.
There's still lots to do, but this basically gets autofill working
end to end, using a precanned profile injected from WebCore. By
default, autofill is not enabled at the moment. For testing you can
turn it on by setting the ENABLE_AUTOFILL environment variable to
"true" and rebuilding.
There is a corresponding change in external/webkit.
Change-Id: I74ef1ccc3fd0625f1bb8e2f85b43a60d23c59ffc
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/glue/form_data.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/glue/form_data.h b/webkit/glue/form_data.h index 033cac3..2bb7115 100644 --- a/webkit/glue/form_data.h +++ b/webkit/glue/form_data.h @@ -9,7 +9,11 @@ #include "base/string_util.h" #include "googleurl/src/gurl.h" +#ifdef ANDROID +#include "WebCoreSupport/autofill/FormFieldAndroid.h" +#else #include "webkit/glue/form_field.h" +#endif namespace webkit_glue { |