| Index: third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp b/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| index 57adb2a76cb7d4655c8e52ee66cf4cdde5d22959..ff2440b743be8cb317de7c30c52d08a254af3a09 100644
|
| --- a/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/FrameFetchContext.cpp
|
| @@ -64,6 +64,7 @@
|
| #include "platform/network/ResourceTimingInfo.h"
|
| #include "platform/weborigin/SchemeRegistry.h"
|
| #include "platform/weborigin/SecurityPolicy.h"
|
| +#include "public/platform/WebFrameScheduler.h"
|
|
|
| #include <algorithm>
|
|
|
| @@ -735,6 +736,11 @@
|
| return static_cast<ResourceLoadPriority>(modifiedPriority);
|
| }
|
|
|
| +WebTaskRunner* FrameFetchContext::loadingTaskRunner() const
|
| +{
|
| + return frame()->frameScheduler()->loadingTaskRunner();
|
| +}
|
| +
|
| DEFINE_TRACE(FrameFetchContext)
|
| {
|
| visitor->trace(m_document);
|
|
|