Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Unified Diff: Source/core/html/forms/ImageInputType.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/forms/HiddenInputType.h ('k') | Source/core/html/forms/InputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/ImageInputType.h
diff --git a/Source/core/html/forms/ImageInputType.h b/Source/core/html/forms/ImageInputType.h
index db0172d27662004673cb036cea1bb0d5b06fd542..9d53891b4ba691f8e80b675a33f3d4c5738664d1 100644
--- a/Source/core/html/forms/ImageInputType.h
+++ b/Source/core/html/forms/ImageInputType.h
@@ -38,30 +38,30 @@
namespace blink {
-class ImageInputType FINAL : public BaseButtonInputType {
+class ImageInputType final : public BaseButtonInputType {
public:
static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
private:
ImageInputType(HTMLInputElement&);
- virtual const AtomicString& formControlType() const OVERRIDE;
- virtual bool isFormDataAppendable() const OVERRIDE;
- virtual bool appendFormData(FormDataList&, bool) const OVERRIDE;
- virtual String resultForDialogSubmit() const OVERRIDE;
- virtual bool supportsValidation() const OVERRIDE;
- virtual RenderObject* createRenderer(RenderStyle*) const OVERRIDE;
- virtual void handleDOMActivateEvent(Event*) OVERRIDE;
- virtual void altAttributeChanged() OVERRIDE;
- virtual void srcAttributeChanged() OVERRIDE;
- virtual void startResourceLoading() OVERRIDE;
- virtual bool shouldRespectAlignAttribute() OVERRIDE;
- virtual bool canBeSuccessfulSubmitButton() OVERRIDE;
- virtual bool isEnumeratable() OVERRIDE;
- virtual bool shouldRespectHeightAndWidthAttributes() OVERRIDE;
- virtual unsigned height() const OVERRIDE;
- virtual unsigned width() const OVERRIDE;
- virtual bool hasLegalLinkAttribute(const QualifiedName&) const OVERRIDE;
- virtual const QualifiedName& subResourceAttributeName() const OVERRIDE;
+ virtual const AtomicString& formControlType() const override;
+ virtual bool isFormDataAppendable() const override;
+ virtual bool appendFormData(FormDataList&, bool) const override;
+ virtual String resultForDialogSubmit() const override;
+ virtual bool supportsValidation() const override;
+ virtual RenderObject* createRenderer(RenderStyle*) const override;
+ virtual void handleDOMActivateEvent(Event*) override;
+ virtual void altAttributeChanged() override;
+ virtual void srcAttributeChanged() override;
+ virtual void startResourceLoading() override;
+ virtual bool shouldRespectAlignAttribute() override;
+ virtual bool canBeSuccessfulSubmitButton() override;
+ virtual bool isEnumeratable() override;
+ virtual bool shouldRespectHeightAndWidthAttributes() override;
+ virtual unsigned height() const override;
+ virtual unsigned width() const override;
+ virtual bool hasLegalLinkAttribute(const QualifiedName&) const override;
+ virtual const QualifiedName& subResourceAttributeName() const override;
IntPoint m_clickLocation; // Valid only during HTMLFormElement::prepareForSubmission().
};
« no previous file with comments | « Source/core/html/forms/HiddenInputType.h ('k') | Source/core/html/forms/InputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698