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

Unified Diff: third_party/WebKit/Source/web/WebSharedWorkerImpl.h

Issue 2715803004: Introduce ThreadableLoadingContext: make threaded loading code one step away from Document (Closed)
Patch Set: . Created 3 years, 10 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/web/WebSharedWorkerImpl.h
diff --git a/third_party/WebKit/Source/web/WebSharedWorkerImpl.h b/third_party/WebKit/Source/web/WebSharedWorkerImpl.h
index 1a37ac931d2e26e02495474baeb0bc90ba269af8..7454b51b69ff067792dbff84a9cd4bd0a03a5cf5 100644
--- a/third_party/WebKit/Source/web/WebSharedWorkerImpl.h
+++ b/third_party/WebKit/Source/web/WebSharedWorkerImpl.h
@@ -137,11 +137,12 @@ class WebSharedWorkerImpl final : public WebFrameClient,
void postTaskToWorkerGlobalScope(
const WebTraceLocation&,
std::unique_ptr<WTF::CrossThreadClosure>) override;
- ExecutionContext* getLoaderExecutionContext() override;
+ ThreadableLoadingContext* getThreadableLoadingContext() override;
// 'shadow page' - created to proxy loading requests from the worker.
// Will be accessed by worker thread when posting tasks.
Persistent<ExecutionContext> m_loadingDocument;
+ Persistent<ThreadableLoadingContext> m_loadingContext;
WebView* m_webView;
Persistent<WebLocalFrameImpl> m_mainFrame;
bool m_askedToTerminate;
« no previous file with comments | « third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.cpp ('k') | third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698