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

Unified Diff: Source/core/dom/custom/CustomElementUpgradeCandidateMap.h

Issue 611233002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/dom/custom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased 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/dom/custom/CustomElementScheduler.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/custom/CustomElementUpgradeCandidateMap.h
diff --git a/Source/core/dom/custom/CustomElementUpgradeCandidateMap.h b/Source/core/dom/custom/CustomElementUpgradeCandidateMap.h
index 6d6573b178b0f4c48d2928b55575fa2448dfbf50..7410631856085078994516db4ba47ea5791de3f1 100644
--- a/Source/core/dom/custom/CustomElementUpgradeCandidateMap.h
+++ b/Source/core/dom/custom/CustomElementUpgradeCandidateMap.h
@@ -40,7 +40,7 @@
namespace blink {
-class CustomElementUpgradeCandidateMap FINAL : public CustomElementObserver {
+class CustomElementUpgradeCandidateMap final : public CustomElementObserver {
WTF_MAKE_NONCOPYABLE(CustomElementUpgradeCandidateMap);
public:
static PassOwnPtrWillBeRawPtr<CustomElementUpgradeCandidateMap> create();
@@ -53,14 +53,14 @@ public:
void add(const CustomElementDescriptor&, Element*);
PassOwnPtrWillBeRawPtr<ElementSet> takeUpgradeCandidatesFor(const CustomElementDescriptor&);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
CustomElementUpgradeCandidateMap() { }
- virtual void elementWasDestroyed(Element*) OVERRIDE;
+ virtual void elementWasDestroyed(Element*) override;
- virtual void elementDidFinishParsingChildren(Element*) OVERRIDE;
+ virtual void elementDidFinishParsingChildren(Element*) override;
void moveToEnd(Element*);
typedef WillBeHeapHashMap<RawPtrWillBeWeakMember<Element>, CustomElementDescriptor> UpgradeCandidateMap;
« no previous file with comments | « Source/core/dom/custom/CustomElementScheduler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698