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 fffaf55c94f4f9a1c7765a948ad30b20d51e8490..631b8afe68957805afd28043d8c512aef81e5822 100644 |
--- a/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp |
+++ b/third_party/WebKit/Source/core/workers/InProcessWorkerObjectProxy.cpp |
@@ -36,7 +36,6 @@ |
#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,12 +121,8 @@ |
WorkerOrWorkletGlobalScope* global_scope) { |
DCHECK(!worker_global_scope_); |
worker_global_scope_ = ToWorkerGlobalScope(global_scope); |
- // This timer task should be unthrottled in order to prevent GC timing from |
- // being delayed. |
- // TODO(nhiroki): Consider making a special task type for GC. |
- // (https://crbug.com/712504) |
timer_ = WTF::MakeUnique<TaskRunnerTimer<InProcessWorkerObjectProxy>>( |
- TaskRunnerHelper::Get(TaskType::kUnthrottled, global_scope), this, |
+ Platform::Current()->CurrentThread()->GetWebTaskRunner(), this, |
&InProcessWorkerObjectProxy::CheckPendingActivity); |
} |