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

Side by Side Diff: third_party/WebKit/Source/core/workers/ThreadedMessagingProxyBase.cpp

Issue 2806623004: Worker: Introduce per-global-scope task scheduler (Closed)
Patch Set: rebase 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/workers/ThreadedMessagingProxyBase.h" 5 #include "core/workers/ThreadedMessagingProxyBase.h"
6 6
7 #include "bindings/core/v8/SourceLocation.h" 7 #include "bindings/core/v8/SourceLocation.h"
8 #include "core/dom/Document.h" 8 #include "core/dom/Document.h"
9 #include "core/frame/Deprecation.h" 9 #include "core/frame/Deprecation.h"
10 #include "core/loader/DocumentLoader.h" 10 #include "core/loader/DocumentLoader.h"
11 #include "core/loader/ThreadableLoadingContext.h" 11 #include "core/loader/ThreadableLoadingContext.h"
12 #include "core/workers/WorkerInspectorProxy.h" 12 #include "core/workers/WorkerInspectorProxy.h"
13 #include "core/workers/WorkerTaskRunners.h"
13 #include "core/workers/WorkerThreadStartupData.h" 14 #include "core/workers/WorkerThreadStartupData.h"
14 #include "platform/wtf/CurrentTime.h" 15 #include "platform/wtf/CurrentTime.h"
15 16
16 namespace blink { 17 namespace blink {
17 18
18 namespace { 19 namespace {
19 20
20 static int g_live_messaging_proxy_count = 0; 21 static int g_live_messaging_proxy_count = 0;
21 22
22 } // namespace 23 } // namespace
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 WorkerThreadCreated(); 67 WorkerThreadCreated();
67 } 68 }
68 69
69 void ThreadedMessagingProxyBase::PostTaskToWorkerGlobalScope( 70 void ThreadedMessagingProxyBase::PostTaskToWorkerGlobalScope(
70 const WebTraceLocation& location, 71 const WebTraceLocation& location,
71 std::unique_ptr<WTF::CrossThreadClosure> task) { 72 std::unique_ptr<WTF::CrossThreadClosure> task) {
72 if (asked_to_terminate_) 73 if (asked_to_terminate_)
73 return; 74 return;
74 75
75 DCHECK(worker_thread_); 76 DCHECK(worker_thread_);
76 worker_thread_->PostTask(location, std::move(task)); 77 worker_thread_->GetWorkerTaskRunners()
78 ->Get(TaskType::kNetworking)
79 ->PostTask(location, std::move(task));
77 } 80 }
78 81
79 void ThreadedMessagingProxyBase::PostTaskToLoader( 82 void ThreadedMessagingProxyBase::PostTaskToLoader(
80 const WebTraceLocation& location, 83 const WebTraceLocation& location,
81 std::unique_ptr<WTF::CrossThreadClosure> task) { 84 std::unique_ptr<WTF::CrossThreadClosure> task) {
82 parent_frame_task_runners_->Get(TaskType::kNetworking) 85 parent_frame_task_runners_->Get(TaskType::kNetworking)
83 ->PostTask(BLINK_FROM_HERE, std::move(task)); 86 ->PostTask(BLINK_FROM_HERE, std::move(task));
84 } 87 }
85 88
86 ThreadableLoadingContext* 89 ThreadableLoadingContext*
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 } 179 }
177 180
178 bool ThreadedMessagingProxyBase::IsParentContextThread() const { 181 bool ThreadedMessagingProxyBase::IsParentContextThread() const {
179 // TODO(nhiroki): Nested worker is not supported yet, so the parent context 182 // TODO(nhiroki): Nested worker is not supported yet, so the parent context
180 // thread should be equal to the main thread (http://crbug.com/31666). 183 // thread should be equal to the main thread (http://crbug.com/31666).
181 DCHECK(execution_context_->IsDocument()); 184 DCHECK(execution_context_->IsDocument());
182 return IsMainThread(); 185 return IsMainThread();
183 } 186 }
184 187
185 } // namespace blink 188 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698