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

Unified Diff: Source/platform/Timer.h

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix 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/platform/TestingPlatformSupport.h ('k') | Source/platform/TracedValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/Timer.h
diff --git a/Source/platform/Timer.h b/Source/platform/Timer.h
index f0c4a67c2f1422543e12d2b629bd8a1041fcef28..ee84463122fd6c51a86e1af69b4c26b376c6a4aa 100644
--- a/Source/platform/Timer.h
+++ b/Source/platform/Timer.h
@@ -122,7 +122,7 @@ public:
: m_object(o), m_function(f) { }
private:
- virtual void fired() OVERRIDE { (m_object->*m_function)(this); }
+ virtual void fired() override { (m_object->*m_function)(this); }
// FIXME: oilpan: TimerBase should be moved to the heap and m_object should be traced.
// This raw pointer is safe as long as Timer<X> is held by the X itself (That's the case
@@ -168,7 +168,7 @@ public:
using TimerBase::isActive;
private:
- virtual void fired() OVERRIDE
+ virtual void fired() override
{
if (m_shouldRestartWhenTimerFires) {
m_shouldRestartWhenTimerFires = false;
« no previous file with comments | « Source/platform/TestingPlatformSupport.h ('k') | Source/platform/TracedValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698