summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
Diffstat (limited to 'webkit')
-rw-r--r--webkit/glue/form_data.h4
-rw-r--r--webkit/glue/form_field.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/webkit/glue/form_data.h b/webkit/glue/form_data.h
index 063b021..f0011c7 100644
--- a/webkit/glue/form_data.h
+++ b/webkit/glue/form_data.h
@@ -9,11 +9,7 @@
#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 {
diff --git a/webkit/glue/form_field.h b/webkit/glue/form_field.h
index c246091..f2903fb 100644
--- a/webkit/glue/form_field.h
+++ b/webkit/glue/form_field.h
@@ -8,14 +8,18 @@
#include <vector>
#include "base/string16.h"
+#ifndef ANDROID
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFormControlElement.h"
+#endif
namespace webkit_glue {
// Stores information about a field in a form.
struct FormField {
FormField();
+#ifndef ANDROID
explicit FormField(WebKit::WebFormControlElement element);
+#endif
FormField(const string16& label,
const string16& name,
const string16& value,