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

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

Issue 1219063013: Fix virtual/override/final usage in Source/core/dom/. (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
Index: Source/core/dom/custom/CustomElementUpgradeCandidateMap.h
diff --git a/Source/core/dom/custom/CustomElementUpgradeCandidateMap.h b/Source/core/dom/custom/CustomElementUpgradeCandidateMap.h
index 8a6756907156c8beab65e9d5c0852ad86a1aac92..bdfcc4262c1b594e8bd4d44f601854c4c9221d76 100644
--- a/Source/core/dom/custom/CustomElementUpgradeCandidateMap.h
+++ b/Source/core/dom/custom/CustomElementUpgradeCandidateMap.h
@@ -44,7 +44,7 @@ class CustomElementUpgradeCandidateMap final : public CustomElementObserver {
WTF_MAKE_NONCOPYABLE(CustomElementUpgradeCandidateMap);
public:
static PassOwnPtrWillBeRawPtr<CustomElementUpgradeCandidateMap> create();
- virtual ~CustomElementUpgradeCandidateMap();
+ ~CustomElementUpgradeCandidateMap() override;
// API for CustomElementRegistrationContext to save and take candidates
@@ -58,7 +58,7 @@ public:
private:
CustomElementUpgradeCandidateMap() { }
- virtual void elementWasDestroyed(Element*) override;
+ void elementWasDestroyed(Element*) override;
typedef WillBeHeapHashMap<RawPtrWillBeWeakMember<Element>, CustomElementDescriptor> UpgradeCandidateMap;
UpgradeCandidateMap m_upgradeCandidates;
« no previous file with comments | « Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h ('k') | Source/core/dom/shadow/InsertionPoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698