| Index: third_party/WebKit/Source/core/frame/SuspendableTimer.h
|
| diff --git a/third_party/WebKit/Source/core/frame/SuspendableTimer.h b/third_party/WebKit/Source/core/frame/SuspendableTimer.h
|
| index 01cd04d19a8d794193e09561261b93257c4587df..5ae6ca58344e4062124d1ed86cf21e11bd0bb158 100644
|
| --- a/third_party/WebKit/Source/core/frame/SuspendableTimer.h
|
| +++ b/third_party/WebKit/Source/core/frame/SuspendableTimer.h
|
| @@ -28,17 +28,18 @@
|
| #define SuspendableTimer_h
|
|
|
| #include "core/CoreExport.h"
|
| -#include "core/dom/ActiveDOMObject.h"
|
| +#include "core/dom/SuspendableObject.h"
|
| #include "platform/Timer.h"
|
|
|
| namespace blink {
|
|
|
| -class CORE_EXPORT SuspendableTimer : public TimerBase, public ActiveDOMObject {
|
| +class CORE_EXPORT SuspendableTimer : public TimerBase,
|
| + public SuspendableObject {
|
| public:
|
| explicit SuspendableTimer(ExecutionContext*);
|
| ~SuspendableTimer() override;
|
|
|
| - // ActiveDOMObject
|
| + // SuspendableObject
|
| void contextDestroyed() override;
|
| void suspend() final;
|
| void resume() final;
|
|
|