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

Unified Diff: Source/core/svg/SVGScriptElement.h

Issue 631153003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/svg (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/svg/SVGSVGElement.cpp ('k') | Source/core/svg/SVGSetElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGScriptElement.h
diff --git a/Source/core/svg/SVGScriptElement.h b/Source/core/svg/SVGScriptElement.h
index e243faa8049ad981461bd71593c25a5055e9ac52..bfea1759b4cc8023aa3b828c40b682fe325a81ed 100644
--- a/Source/core/svg/SVGScriptElement.h
+++ b/Source/core/svg/SVGScriptElement.h
@@ -32,7 +32,7 @@ namespace blink {
class ScriptLoader;
-class SVGScriptElement FINAL
+class SVGScriptElement final
: public SVGElement
, public SVGURIReference
, public ScriptLoaderClient {
@@ -43,7 +43,7 @@ public:
ScriptLoader* loader() const { return m_loader.get(); }
#if ENABLE(ASSERT)
- virtual bool isAnimatableAttribute(const QualifiedName&) const OVERRIDE;
+ virtual bool isAnimatableAttribute(const QualifiedName&) const override;
#endif
private:
@@ -51,35 +51,35 @@ private:
virtual ~SVGScriptElement();
bool isSupportedAttribute(const QualifiedName&);
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
- virtual void didNotifySubtreeInsertionsToDocument() OVERRIDE;
- virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
- virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
-
- virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
- virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
- virtual bool isStructurallyExternal() const OVERRIDE { return hasSourceAttribute(); }
- virtual void finishParsingChildren() OVERRIDE;
-
- virtual bool haveLoadedRequiredResources() OVERRIDE;
-
- virtual String sourceAttributeValue() const OVERRIDE;
- virtual String charsetAttributeValue() const OVERRIDE;
- virtual String typeAttributeValue() const OVERRIDE;
- virtual String languageAttributeValue() const OVERRIDE;
- virtual String forAttributeValue() const OVERRIDE;
- virtual String eventAttributeValue() const OVERRIDE;
- virtual bool asyncAttributeValue() const OVERRIDE;
- virtual bool deferAttributeValue() const OVERRIDE;
- virtual bool hasSourceAttribute() const OVERRIDE;
-
- virtual void dispatchLoadEvent() OVERRIDE;
-
- virtual PassRefPtrWillBeRawPtr<Element> cloneElementWithoutAttributesAndChildren() OVERRIDE;
- virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; }
-
- virtual Timer<SVGElement>* svgLoadEventTimer() OVERRIDE { return &m_svgLoadEventTimer; }
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ virtual void didNotifySubtreeInsertionsToDocument() override;
+ virtual void childrenChanged(const ChildrenChange&) override;
+ virtual void didMoveToNewDocument(Document& oldDocument) override;
+
+ virtual void svgAttributeChanged(const QualifiedName&) override;
+ virtual bool isURLAttribute(const Attribute&) const override;
+ virtual bool isStructurallyExternal() const override { return hasSourceAttribute(); }
+ virtual void finishParsingChildren() override;
+
+ virtual bool haveLoadedRequiredResources() override;
+
+ virtual String sourceAttributeValue() const override;
+ virtual String charsetAttributeValue() const override;
+ virtual String typeAttributeValue() const override;
+ virtual String languageAttributeValue() const override;
+ virtual String forAttributeValue() const override;
+ virtual String eventAttributeValue() const override;
+ virtual bool asyncAttributeValue() const override;
+ virtual bool deferAttributeValue() const override;
+ virtual bool hasSourceAttribute() const override;
+
+ virtual void dispatchLoadEvent() override;
+
+ virtual PassRefPtrWillBeRawPtr<Element> cloneElementWithoutAttributesAndChildren() override;
+ virtual bool rendererIsNeeded(const RenderStyle&) override { return false; }
+
+ virtual Timer<SVGElement>* svgLoadEventTimer() override { return &m_svgLoadEventTimer; }
Timer<SVGElement> m_svgLoadEventTimer;
« no previous file with comments | « Source/core/svg/SVGSVGElement.cpp ('k') | Source/core/svg/SVGSetElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698