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

Unified Diff: Source/core/html/HTMLScriptElement.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/HTMLRubyElement.h ('k') | Source/core/html/HTMLSelectElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLScriptElement.h
diff --git a/Source/core/html/HTMLScriptElement.h b/Source/core/html/HTMLScriptElement.h
index a5e3570ca18010300be6fff4b9133be6e0d9d5ab..f829b6d1db1fe844eea2c7921fa4d2dfbab34470 100644
--- a/Source/core/html/HTMLScriptElement.h
+++ b/Source/core/html/HTMLScriptElement.h
@@ -31,7 +31,7 @@ namespace blink {
class ScriptLoader;
-class HTMLScriptElement FINAL : public HTMLElement, public ScriptLoaderClient {
+class HTMLScriptElement final : public HTMLElement, public ScriptLoaderClient {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<HTMLScriptElement> create(Document&, bool wasInsertedByParser, bool alreadyStarted = false);
@@ -49,30 +49,30 @@ public:
private:
HTMLScriptElement(Document&, bool wasInsertedByParser, bool alreadyStarted);
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual void attributeWillChange(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue) OVERRIDE;
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
- virtual void didNotifySubtreeInsertionsToDocument() OVERRIDE;
- virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
- virtual void didMoveToNewDocument(Document& oldDocument) OVERRIDE;
-
- virtual bool isURLAttribute(const Attribute&) const OVERRIDE;
- virtual bool hasLegalLinkAttribute(const QualifiedName&) const OVERRIDE;
- virtual const QualifiedName& subResourceAttributeName() const 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 void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ virtual void attributeWillChange(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue) override;
+ virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ virtual void didNotifySubtreeInsertionsToDocument() override;
+ virtual void childrenChanged(const ChildrenChange&) override;
+ virtual void didMoveToNewDocument(Document& oldDocument) override;
+
+ virtual bool isURLAttribute(const Attribute&) const override;
+ virtual bool hasLegalLinkAttribute(const QualifiedName&) const override;
+ virtual const QualifiedName& subResourceAttributeName() const 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;
OwnPtr<ScriptLoader> m_loader;
};
« no previous file with comments | « Source/core/html/HTMLRubyElement.h ('k') | Source/core/html/HTMLSelectElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698