summaryrefslogtreecommitdiffstats
path: root/WebKit/android/WebCoreSupport/ChromiumIncludes.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/android/WebCoreSupport/ChromiumIncludes.h')
-rw-r--r--WebKit/android/WebCoreSupport/ChromiumIncludes.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/WebKit/android/WebCoreSupport/ChromiumIncludes.h b/WebKit/android/WebCoreSupport/ChromiumIncludes.h
index a7abef1..1a69ff1 100644
--- a/WebKit/android/WebCoreSupport/ChromiumIncludes.h
+++ b/WebKit/android/WebCoreSupport/ChromiumIncludes.h
@@ -26,6 +26,8 @@
#ifndef ChromiumIncludes_h
#define ChromiumIncludes_h
+#include "config.h"
+
// Include all external/chromium files in this file so the problems with the LOG
// and LOG_ASSERT defines can be handled in one place.
@@ -64,6 +66,20 @@
#include <net/url_request/url_request.h>
#include <net/url_request/url_request_context.h>
+#if ENABLE(WEB_AUTOFILL)
+#include <autofill/autofill_manager.h>
+#include <autofill/autofill_profile.h>
+#include <autofill/personal_data_manager.h>
+#include <base/logging.h>
+#include <base/scoped_vector.h>
+#include <base/string16.h>
+#include <base/utf_string_conversions.h>
+#include <chrome/browser/autofill/autofill_host.h>
+#include <chrome/browser/profile.h>
+#include <chrome/browser/tab_contents/tab_contents.h>
+#include <webkit/glue/form_data.h>
+#endif
+
#undef LOG
#if defined(LOG_WAS_DEFINED) && defined(LOG_PRI)
#define LOG(priority, tag, ...) LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__)