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

Unified Diff: Source/core/html/HTMLContentElement.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/HTMLCollection.h ('k') | Source/core/html/HTMLDListElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLContentElement.h
diff --git a/Source/core/html/HTMLContentElement.h b/Source/core/html/HTMLContentElement.h
index d54b4b3107a63f63874114e65c6ed6dc2f8dd2f9..6133df7d44ec9d903728e9c5e2ccb15bc2efd742 100644
--- a/Source/core/html/HTMLContentElement.h
+++ b/Source/core/html/HTMLContentElement.h
@@ -36,13 +36,13 @@
namespace blink {
-class HTMLContentElement FINAL : public InsertionPoint {
+class HTMLContentElement final : public InsertionPoint {
DEFINE_WRAPPERTYPEINFO();
public:
DECLARE_NODE_FACTORY(HTMLContentElement);
virtual ~HTMLContentElement();
- virtual bool canAffectSelector() const OVERRIDE { return true; }
+ virtual bool canAffectSelector() const override { return true; }
bool canSelectNode(const WillBeHeapVector<RawPtrWillBeMember<Node>, 32>& siblings, int nth) const;
@@ -52,7 +52,7 @@ public:
private:
explicit HTMLContentElement(Document&);
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
bool validateSelect() const;
void parseSelect();
« no previous file with comments | « Source/core/html/HTMLCollection.h ('k') | Source/core/html/HTMLDListElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698