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

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

Issue 2534803002: Move InspectorTask handling from MainThreadTaskRunner to Document (Closed)
Patch Set: rebase Created 4 years 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/ParentFrameTaskRunners.cpp
diff --git a/third_party/WebKit/Source/core/workers/ParentFrameTaskRunners.cpp b/third_party/WebKit/Source/core/workers/ParentFrameTaskRunners.cpp
index f6bfe61817ae6a259b44c2f050ff4563ad335d06..f3099795828f8fb6b690626acc018137c9eedb65 100644
--- a/third_party/WebKit/Source/core/workers/ParentFrameTaskRunners.cpp
+++ b/third_party/WebKit/Source/core/workers/ParentFrameTaskRunners.cpp
@@ -20,7 +20,7 @@ ParentFrameTaskRunners::ParentFrameTaskRunners(LocalFrame* frame)
// For now we only support very limited task types.
for (auto type :
{TaskType::Internal, TaskType::Networking, TaskType::PostedMessage,
- TaskType::CanvasBlobSerialization}) {
+ TaskType::CanvasBlobSerialization, TaskType::Unthrottled}) {
m_taskRunners.add(type, TaskRunnerHelper::get(type, frame));
}
}

Powered by Google App Engine
This is Rietveld 408576698