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

Unified Diff: Source/core/dom/custom/CustomElementRegistry.cpp

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/CustomElementRegistry.h ('k') | Source/core/dom/custom/CustomElementScheduler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/custom/CustomElementRegistry.cpp
diff --git a/Source/core/dom/custom/CustomElementRegistry.cpp b/Source/core/dom/custom/CustomElementRegistry.cpp
index a3b9775947ca47e3be8beaadbe578a655a2edc81..985566f1858836d47b2c966cfd88b3f11e423eed 100644
--- a/Source/core/dom/custom/CustomElementRegistry.cpp
+++ b/Source/core/dom/custom/CustomElementRegistry.cpp
@@ -53,9 +53,9 @@ public:
private:
#if ENABLE(OILPAN)
// In oilpan we don't have the disposed phase for context lifecycle observer.
- virtual void documentWasDetached() OVERRIDE { m_wentAway = true; }
+ virtual void documentWasDetached() override { m_wentAway = true; }
#else
- virtual void documentWasDisposed() OVERRIDE { m_wentAway = true; }
+ virtual void documentWasDisposed() override { m_wentAway = true; }
#endif
bool m_wentAway;
« no previous file with comments | « Source/core/dom/custom/CustomElementRegistry.h ('k') | Source/core/dom/custom/CustomElementScheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698