| 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 f3099795828f8fb6b690626acc018137c9eedb65..4a244b06a7380f1a28da13d2175ab3dfa9a86722 100644
|
| --- a/third_party/WebKit/Source/core/workers/ParentFrameTaskRunners.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/ParentFrameTaskRunners.cpp
|
| @@ -18,9 +18,9 @@ ParentFrameTaskRunners::ParentFrameTaskRunners(LocalFrame* frame)
|
| DCHECK(frame->document()->isContextThread());
|
|
|
| // For now we only support very limited task types.
|
| - for (auto type :
|
| - {TaskType::Internal, TaskType::Networking, TaskType::PostedMessage,
|
| - TaskType::CanvasBlobSerialization, TaskType::Unthrottled}) {
|
| + for (auto type : {TaskType::InternalTimer, TaskType::InternalLoading,
|
| + TaskType::Networking, TaskType::PostedMessage,
|
| + TaskType::CanvasBlobSerialization, TaskType::Unthrottled}) {
|
| m_taskRunners.add(type, TaskRunnerHelper::get(type, frame));
|
| }
|
| }
|
|
|