summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/html/forms/SubmitInputType.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/html/forms/SubmitInputType.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/html/forms/SubmitInputType.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/Source/core/html/forms/SubmitInputType.h b/chromium/third_party/WebKit/Source/core/html/forms/SubmitInputType.h
index ea88704fe9e..169117c2155 100644
--- a/chromium/third_party/WebKit/Source/core/html/forms/SubmitInputType.h
+++ b/chromium/third_party/WebKit/Source/core/html/forms/SubmitInputType.h
@@ -35,9 +35,9 @@
namespace WebCore {
-class SubmitInputType : public BaseButtonInputType {
+class SubmitInputType FINAL : public BaseButtonInputType {
public:
- static PassRefPtr<InputType> create(HTMLInputElement&);
+ static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
private:
SubmitInputType(HTMLInputElement& element) : BaseButtonInputType(element) { }
@@ -47,7 +47,6 @@ private:
virtual void handleDOMActivateEvent(Event*) OVERRIDE;
virtual bool canBeSuccessfulSubmitButton() OVERRIDE;
virtual String defaultValue() const OVERRIDE;
- virtual bool isSubmitButton() const OVERRIDE;
virtual bool isTextButton() const OVERRIDE;
};