summaryrefslogtreecommitdiffstats
path: root/WebCore/html/FileInputType.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/FileInputType.h')
-rw-r--r--WebCore/html/FileInputType.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/WebCore/html/FileInputType.h b/WebCore/html/FileInputType.h
index 2cbfe67..24430fb 100644
--- a/WebCore/html/FileInputType.h
+++ b/WebCore/html/FileInputType.h
@@ -31,18 +31,20 @@
#ifndef FileInputType_h
#define FileInputType_h
-#include "InputType.h"
+#include "BaseButtonInputType.h"
namespace WebCore {
-class FileInputType : public InputType {
+class FileInputType : public BaseButtonInputType {
public:
static PassOwnPtr<InputType> create(HTMLInputElement*);
private:
- FileInputType(HTMLInputElement* element) : InputType(element) { }
+ FileInputType(HTMLInputElement* element) : BaseButtonInputType(element) { }
virtual const AtomicString& formControlType() const;
+ virtual bool appendFormData(FormDataList&, bool) const;
virtual bool valueMissing(const String&) const;
+ virtual RenderObject* createRenderer(RenderArena*, RenderStyle*) const;
};
} // namespace WebCore