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

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

Issue 2840473002: Worker: Remove WorkerLoaderProxy for clean-up (Closed)
Patch Set: clean up Created 3 years, 7 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 6d5f44e85e2a53290670a0eb533201f05d188497..d97176b9a2d919ae37c668dfb64b7521c3fcbdda 100644
--- a/third_party/WebKit/Source/web/WebSharedWorkerImpl.h
+++ b/third_party/WebKit/Source/web/WebSharedWorkerImpl.h
@@ -35,7 +35,6 @@
#include <memory>
#include "core/dom/ExecutionContext.h"
-#include "core/workers/WorkerLoaderProxy.h"
#include "core/workers/WorkerThread.h"
#include "platform/wtf/RefPtr.h"
#include "public/platform/Platform.h"
@@ -65,8 +64,7 @@ class WorkerScriptLoader;
// *OnWorkerThread or have header comments.
class WebSharedWorkerImpl final : public WebFrameClient,
public WebSharedWorker,
- public WebDevToolsAgentClient,
- private WorkerLoaderProxyProvider {
+ public WebDevToolsAgentClient {
public:
explicit WebSharedWorkerImpl(WebSharedWorkerClient*);
@@ -134,9 +132,6 @@ class WebSharedWorkerImpl final : public WebFrameClient,
void ConnectTaskOnWorkerThread(std::unique_ptr<WebMessagePortChannel>);
- // WorkerLoaderProxyProvider
- ThreadableLoadingContext* GetThreadableLoadingContext() override;
-
// 'shadow page' - created to proxy loading requests from the worker.
// Will be accessed by worker thread when posting tasks.
Persistent<ExecutionContext> loading_document_;
@@ -160,8 +155,6 @@ class WebSharedWorkerImpl final : public WebFrameClient,
// Kept around only while main script loading is ongoing.
RefPtr<WorkerScriptLoader> main_script_loader_;
- RefPtr<WorkerLoaderProxy> loader_proxy_;
-
WebURL url_;
WebString name_;
WebAddressSpace creation_address_space_;
« 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