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

Unified Diff: Source/core/frame/SuspendableTimer.h

Issue 635853002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/frame (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/frame/Screen.h ('k') | Source/core/frame/csp/MediaListDirective.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/SuspendableTimer.h
diff --git a/Source/core/frame/SuspendableTimer.h b/Source/core/frame/SuspendableTimer.h
index 71ebf7f554d97f6f0821e5e1e3f8b9e3e38d34d6..f188ad586853d224f1ec2b7a7cdb452b67a2d485 100644
--- a/Source/core/frame/SuspendableTimer.h
+++ b/Source/core/frame/SuspendableTimer.h
@@ -38,10 +38,10 @@ public:
virtual ~SuspendableTimer();
// ActiveDOMObject
- virtual bool hasPendingActivity() const OVERRIDE FINAL;
- virtual void stop() OVERRIDE;
- virtual void suspend() OVERRIDE FINAL;
- virtual void resume() OVERRIDE FINAL;
+ virtual bool hasPendingActivity() const override final;
+ virtual void stop() override;
+ virtual void suspend() override final;
+ virtual void resume() override final;
private:
virtual void fired() = 0;
« no previous file with comments | « Source/core/frame/Screen.h ('k') | Source/core/frame/csp/MediaListDirective.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698