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

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

Issue 134043004: Update page & frame classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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/animation/ImplicitAnimation.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 3981ab7e07799c1f79d8c1648f168457f7b3128b..c07f0d73e2726c760c09b64bb286273460f9ca3c 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;
- virtual void stop();
- virtual void suspend();
- virtual void resume();
+ 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/animation/ImplicitAnimation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698