| Index: third_party/WebKit/Source/core/frame/PlatformEventController.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/PlatformEventController.cpp b/third_party/WebKit/Source/core/frame/PlatformEventController.cpp
|
| index e31fb2708c75ab873c60c816f614c370e1ffbf02..14980bb0d551a0eb49e3725a2d0d0571d10a92f9 100644
|
| --- a/third_party/WebKit/Source/core/frame/PlatformEventController.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/PlatformEventController.cpp
|
| @@ -12,7 +12,9 @@ PlatformEventController::PlatformEventController(LocalFrame* frame)
|
| : PageVisibilityObserver(frame ? frame->page() : nullptr),
|
| m_hasEventListener(false),
|
| m_isActive(false),
|
| - m_timer(this, &PlatformEventController::oneShotCallback) {}
|
| + m_timer(TaskRunnerHelper::get(TaskType::UnspecedTimer, frame),
|
| + this,
|
| + &PlatformEventController::oneShotCallback) {}
|
|
|
| PlatformEventController::~PlatformEventController() {}
|
|
|
|
|