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; |