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

Unified Diff: Source/core/html/HTMLSourceElement.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/HTMLShadowElement.h ('k') | Source/core/html/HTMLSourceElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLSourceElement.h
diff --git a/Source/core/html/HTMLSourceElement.h b/Source/core/html/HTMLSourceElement.h
index a9d25ed4ff1866fff284fc68a15356e49593e64f..a3600be730164b6d033d395682492c0bbe0cd935 100644
--- a/Source/core/html/HTMLSourceElement.h
+++ b/Source/core/html/HTMLSourceElement.h
@@ -41,7 +41,7 @@ public:
class Listener;
DECLARE_NODE_FACTORY(HTMLSourceElement);
- virtual ~HTMLSourceElement();
+ ~HTMLSourceElement() override;
const AtomicString& type() const;
void setSrc(const String&);
@@ -59,12 +59,12 @@ public:
private:
explicit HTMLSourceElement(Document&);
- virtual void didMoveToNewDocument(Document& oldDocument) override;
+ void didMoveToNewDocument(Document& oldDocument) override;
- virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
- virtual void removedFrom(ContainerNode*) override;
- virtual bool isURLAttribute(const Attribute&) const override;
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ void removedFrom(ContainerNode*) override;
+ bool isURLAttribute(const Attribute&) const override;
+ void parseAttribute(const QualifiedName&, const AtomicString&) override;
void notifyMediaQueryChanged();
void createMediaQueryList(const AtomicString& media);
« no previous file with comments | « Source/core/html/HTMLShadowElement.h ('k') | Source/core/html/HTMLSourceElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698