Index: third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp |
diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp |
index 631b8afe68957805afd28043d8c512aef81e5822..7b6441d9e648be5ca73710482aaf231391b3cefd 100644 |
--- a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp |
+++ b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp |
@@ -36,6 +36,7 @@ |
#include "bindings/core/v8/V8GCController.h" |
#include "core/dom/Document.h" |
#include "core/dom/ExecutionContext.h" |
+#include "core/dom/TaskRunnerHelper.h" |
#include "core/events/MessageEvent.h" |
#include "core/inspector/ConsoleMessage.h" |
#include "core/workers/InProcessWorkerMessagingProxy.h" |
@@ -122,7 +123,7 @@ void InProcessWorkerObjectProxy::DidCreateWorkerGlobalScope( |
DCHECK(!worker_global_scope_); |
worker_global_scope_ = ToWorkerGlobalScope(global_scope); |
timer_ = WTF::MakeUnique<TaskRunnerTimer<InProcessWorkerObjectProxy>>( |
- Platform::Current()->CurrentThread()->GetWebTaskRunner(), this, |
+ TaskRunnerHelper::Get(TaskType::kUnspecedTimer, global_scope), this, |
&InProcessWorkerObjectProxy::CheckPendingActivity); |
} |