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

Unified Diff: third_party/WebKit/Source/platform/scheduler/child/worker_global_scope_scheduler.cc

Issue 2806623004: Worker: Introduce per-global-scope task scheduler (Closed)
Patch Set: remove unnecessary comments 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/platform/scheduler/child/worker_global_scope_scheduler.cc
diff --git a/third_party/WebKit/Source/platform/scheduler/child/worker_global_scope_scheduler.cc b/third_party/WebKit/Source/platform/scheduler/child/worker_global_scope_scheduler.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7178a0bdeaab6cfd29920c3c2e68b4e91b93cb5b
--- /dev/null
+++ b/third_party/WebKit/Source/platform/scheduler/child/worker_global_scope_scheduler.cc
@@ -0,0 +1,34 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "platform/scheduler/child/worker_global_scope_scheduler.h"
+
+#include "platform/scheduler/child/worker_scheduler.h"
+
+namespace blink {
+namespace scheduler {
+
+WorkerGlobalScopeScheduler::WorkerGlobalScopeScheduler(
+ WorkerScheduler* worker_scheduler) {
+ scoped_refptr<TaskQueue> task_queue =
+ worker_scheduler->CreateUnthrottledTaskRunner(
+ TaskQueue::QueueType::UNTHROTTLED);
+ unthrottled_task_runner_ = WebTaskRunnerImpl::Create(std::move(task_queue));
+}
+
+WorkerGlobalScopeScheduler::~WorkerGlobalScopeScheduler() {
+#if DCHECK_IS_ON()
+ DCHECK(is_disposed_);
+#endif
+}
+
+void WorkerGlobalScopeScheduler::Dispose() {
+ unthrottled_task_runner_->GetTaskQueue()->UnregisterTaskQueue();
+#if DCHECK_IS_ON()
+ is_disposed_ = true;
+#endif
+}
+
+} // namespace scheduler
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698