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

Unified Diff: Source/core/dom/custom/CustomElementMicrotaskImportStep.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
Index: Source/core/dom/custom/CustomElementMicrotaskImportStep.h
diff --git a/Source/core/dom/custom/CustomElementMicrotaskImportStep.h b/Source/core/dom/custom/CustomElementMicrotaskImportStep.h
index 9e9d941404cbf6a00dd1f97e111d7c2d305d4913..cd5d3ee39c041bb5b000c9d349f6a62d2712c4be 100644
--- a/Source/core/dom/custom/CustomElementMicrotaskImportStep.h
+++ b/Source/core/dom/custom/CustomElementMicrotaskImportStep.h
@@ -63,7 +63,7 @@ public:
WeakPtr<CustomElementMicrotaskImportStep> weakPtr() { return m_weakFactory.createWeakPtr(); }
#endif
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit CustomElementMicrotaskImportStep(HTMLImportChild*);
@@ -72,10 +72,10 @@ private:
bool shouldWaitForImport() const;
// CustomElementMicrotaskStep
- virtual Result process() OVERRIDE FINAL;
+ virtual Result process() override final;
#if !defined(NDEBUG)
- virtual void show(unsigned indent) OVERRIDE;
+ virtual void show(unsigned indent) override;
#endif
WeakPtrWillBeWeakMember<HTMLImportChild> m_import;
#if !ENABLE(OILPAN)

Powered by Google App Engine
This is Rietveld 408576698