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

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

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/RootFrameViewport.h ('k') | Source/core/imagebitmap/ImageBitmapFactories.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 3b0eda1b7da3599a517cacf6ff9d0bc349567f26..f2c8c613d1f07f74998e1f2f0acc8951a55dcb9f 100644
--- a/Source/core/frame/SuspendableTimer.h
+++ b/Source/core/frame/SuspendableTimer.h
@@ -36,16 +36,16 @@ namespace blink {
class CORE_EXPORT SuspendableTimer : public TimerBase, public ActiveDOMObject {
public:
explicit SuspendableTimer(ExecutionContext*);
- virtual ~SuspendableTimer();
+ ~SuspendableTimer() override;
// ActiveDOMObject
- virtual bool hasPendingActivity() const override final;
- virtual void stop() override;
- virtual void suspend() override final;
- virtual void resume() override final;
+ bool hasPendingActivity() const final;
+ void stop() override;
+ void suspend() final;
+ void resume() final;
private:
- virtual void fired() override = 0;
+ void fired() override = 0;
double m_nextFireInterval;
double m_repeatInterval;
« no previous file with comments | « Source/core/frame/RootFrameViewport.h ('k') | Source/core/imagebitmap/ImageBitmapFactories.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698