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

Unified Diff: third_party/WebKit/Source/core/loader/FrameFetchContext.h

Issue 2701753003: [WIP] off-main-thread loading
Patch Set: small fix 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/core/loader/FrameFetchContext.h
diff --git a/third_party/WebKit/Source/core/loader/FrameFetchContext.h b/third_party/WebKit/Source/core/loader/FrameFetchContext.h
index 671f2e48236cd127576e6e9fc1752b8bd00d9f90..2876141466a2b9312e9c289b87af709b1c13fcb3 100644
--- a/third_party/WebKit/Source/core/loader/FrameFetchContext.h
+++ b/third_party/WebKit/Source/core/loader/FrameFetchContext.h
@@ -72,6 +72,7 @@ class CORE_EXPORT FrameFetchContext final : public FetchContext {
~FrameFetchContext();
bool isLiveContext() { return true; }
+ WebURLLoader* createURLLoader() override;
void addAdditionalRequestHeaders(ResourceRequest&,
FetchResourceType) override;
@@ -139,6 +140,8 @@ class CORE_EXPORT FrameFetchContext final : public FetchContext {
bool isControlledByServiceWorker() const override;
int64_t serviceWorkerID() const override;
+ int applicationCacheHostID() const override;
+
bool isMainFrame() const override;
bool defersLoading() const override;
bool isLoadComplete() const override;
@@ -166,6 +169,7 @@ class CORE_EXPORT FrameFetchContext final : public FetchContext {
ResourceLoadPriority modifyPriorityForExperiments(
ResourceLoadPriority) override;
+ RefPtr<WebTaskRunner> timerTaskRunner() const override;
RefPtr<WebTaskRunner> loadingTaskRunner() const override;
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698