| Index: third_party/WebKit/Source/core/frame/SuspendableTimer.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/SuspendableTimer.cpp b/third_party/WebKit/Source/core/frame/SuspendableTimer.cpp
|
| index 825ebd68fbd5ace783189ec6c0e186e64aaf126b..a98d9ef676cb4bdeb4028c003f224fb55dcb7f67 100644
|
| --- a/third_party/WebKit/Source/core/frame/SuspendableTimer.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/SuspendableTimer.cpp
|
| @@ -35,8 +35,8 @@ namespace {
|
| const double kNextFireIntervalInvalid = -1.0;
|
| }
|
|
|
| -SuspendableTimer::SuspendableTimer(ExecutionContext* context)
|
| - : TimerBase(TaskRunnerHelper::get(TaskType::Timer, context)),
|
| +SuspendableTimer::SuspendableTimer(ExecutionContext* context, TaskType taskType)
|
| + : TimerBase(TaskRunnerHelper::get(taskType, context)),
|
| ActiveDOMObject(context),
|
| m_nextFireInterval(kNextFireIntervalInvalid),
|
| m_repeatInterval(0)
|
|
|