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

Unified Diff: Source/core/html/HTMLTemplateElement.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/HTMLTableSectionElement.h ('k') | Source/core/html/HTMLTextAreaElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLTemplateElement.h
diff --git a/Source/core/html/HTMLTemplateElement.h b/Source/core/html/HTMLTemplateElement.h
index a9e6ae5ae6b3f689aa1802bf747f341b0da5560c..2185690e77c2ac7d4bbed3e3bda29d3594ede026 100644
--- a/Source/core/html/HTMLTemplateElement.h
+++ b/Source/core/html/HTMLTemplateElement.h
@@ -42,14 +42,14 @@ class HTMLTemplateElement final : public HTMLElement {
DEFINE_WRAPPERTYPEINFO();
public:
DECLARE_NODE_FACTORY(HTMLTemplateElement);
- virtual ~HTMLTemplateElement();
+ ~HTMLTemplateElement() override;
DECLARE_VIRTUAL_TRACE();
DocumentFragment* content() const;
private:
- virtual PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep = true) override;
- virtual void didMoveToNewDocument(Document& oldDocument) override;
+ PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep = true) override;
+ void didMoveToNewDocument(Document& oldDocument) override;
explicit HTMLTemplateElement(Document&);
« no previous file with comments | « Source/core/html/HTMLTableSectionElement.h ('k') | Source/core/html/HTMLTextAreaElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698