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

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

Issue 2831843002: Revert of Worker: Introduce per-global-scope task scheduler (Closed)
Patch Set: 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
deleted file mode 100644
index 7178a0bdeaab6cfd29920c3c2e68b4e91b93cb5b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/platform/scheduler/child/worker_global_scope_scheduler.cc
+++ /dev/null
@@ -1,34 +0,0 @@
-// 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