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

Unified Diff: Source/core/html/HTMLScriptElement.h

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 e16281f219f0001ba3a27dc7787854f56a459053..b5e629e758dc6a7d2bca4b0eae8f142da346930e 100644
--- a/Source/core/html/HTMLScriptElement.h
+++ b/Source/core/html/HTMLScriptElement.h
@@ -51,30 +51,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;
+ void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ void attributeWillChange(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue) override;
+ InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ void didNotifySubtreeInsertionsToDocument() override;
+ void childrenChanged(const ChildrenChange&) override;
+ void didMoveToNewDocument(Document& oldDocument) override;
+
+ bool isURLAttribute(const Attribute&) const override;
+ bool hasLegalLinkAttribute(const QualifiedName&) const override;
+ const QualifiedName& subResourceAttributeName() const override;
+
+ String sourceAttributeValue() const override;
+ String charsetAttributeValue() const override;
+ String typeAttributeValue() const override;
+ String languageAttributeValue() const override;
+ String forAttributeValue() const override;
+ String eventAttributeValue() const override;
+ bool asyncAttributeValue() const override;
+ bool deferAttributeValue() const override;
+ bool hasSourceAttribute() const override;
+
+ void dispatchLoadEvent() override;
+
+ PassRefPtrWillBeRawPtr<Element> cloneElementWithoutAttributesAndChildren() override;
OwnPtrWillBeMember<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