Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Unified Diff: third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp

Issue 2806623004: Worker: Introduce per-global-scope task scheduler (Closed)
Patch Set: remove unused header Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
diff --git a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
index 15c1f33920f1d6ea47ae5009b9877e0679c52c79..ebed101b73c8e87f6b222095d7f40c2b249df853 100644
--- a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
+++ b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
@@ -317,8 +317,7 @@ WorkerGlobalScope::WorkerGlobalScope(
closing_(false),
event_queue_(WorkerEventQueue::Create(this)),
worker_clients_(worker_clients),
- timers_(
- Platform::Current()->CurrentThread()->Scheduler()->TimerTaskRunner()),
+ timers_(TaskRunnerHelper::Get(TaskType::kTimer, this)),
time_origin_(time_origin),
last_pending_error_event_id_(0) {
InstanceCounters::IncrementCounter(

Powered by Google App Engine
This is Rietveld 408576698