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

Unified Diff: third_party/WebKit/Source/platform/loader/fetch/RawResource.cpp

Issue 2807533003: [WIP2] off-main-thread loading
Patch Set: call set_is_secure_context in EmbeddedSharedWorkerStub::CreateWorkerFetchContext() 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/platform/loader/fetch/RawResource.cpp
diff --git a/third_party/WebKit/Source/platform/loader/fetch/RawResource.cpp b/third_party/WebKit/Source/platform/loader/fetch/RawResource.cpp
index 87fa5b04962c33fb9f04d1b2cb2d67d712e8db7d..ac66a87bc800e52733f3a5a4a378188444f1b5e3 100644
--- a/third_party/WebKit/Source/platform/loader/fetch/RawResource.cpp
+++ b/third_party/WebKit/Source/platform/loader/fetch/RawResource.cpp
@@ -117,8 +117,9 @@ RawResource* RawResource::FetchManifest(FetchParameters& params,
RawResource::RawResource(const ResourceRequest& resource_request,
Type type,
- const ResourceLoaderOptions& options)
- : Resource(resource_request, type, options) {}
+ const ResourceLoaderOptions& options,
+ FetchContext* fetch_context)
+ : Resource(resource_request, type, options, fetch_context) {}
void RawResource::AppendData(const char* data, size_t length) {
Resource::AppendData(data, length);

Powered by Google App Engine
This is Rietveld 408576698