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

Unified Diff: Source/platform/Timer.h

Issue 631803002: Replacing the OVERRIDE with override and FINAL with final (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase issue 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/RefCountedSupplement.h ('k') | Source/platform/WebThreadSupportingGC.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 ee84463122fd6c51a86e1af69b4c26b376c6a4aa..4922805314335132d7a3e9203f5440d09e9efb49 100644
--- a/Source/platform/Timer.h
+++ b/Source/platform/Timer.h
@@ -114,7 +114,7 @@ private:
};
template <typename TimerFiredClass>
-class Timer FINAL : public TimerBase {
+class Timer final : public TimerBase {
public:
typedef void (TimerFiredClass::*TimerFiredFunction)(Timer*);
@@ -139,7 +139,7 @@ inline bool TimerBase::isActive() const
}
template <typename TimerFiredClass>
-class DeferrableOneShotTimer FINAL : private TimerBase {
+class DeferrableOneShotTimer final : private TimerBase {
public:
typedef void (TimerFiredClass::*TimerFiredFunction)(DeferrableOneShotTimer*);
« no previous file with comments | « Source/platform/RefCountedSupplement.h ('k') | Source/platform/WebThreadSupportingGC.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698