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

Unified Diff: third_party/WebKit/Source/core/workers/DedicatedWorkerThread.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/core/workers/DedicatedWorkerThread.h
diff --git a/third_party/WebKit/Source/core/workers/DedicatedWorkerThread.h b/third_party/WebKit/Source/core/workers/DedicatedWorkerThread.h
index cde15ef4a5208d1f95600a375e6f39200b102eac..a4fa47118415c8da11406e2fd8ec4ef75d4b7f68 100644
--- a/third_party/WebKit/Source/core/workers/DedicatedWorkerThread.h
+++ b/third_party/WebKit/Source/core/workers/DedicatedWorkerThread.h
@@ -41,7 +41,7 @@ class WorkerThreadStartupData;
class CORE_EXPORT DedicatedWorkerThread : public WorkerThread {
public:
static std::unique_ptr<DedicatedWorkerThread> Create(
- PassRefPtr<WorkerLoaderProxy>,
+ ThreadableLoadingContext*,
InProcessWorkerObjectProxy&,
double time_origin);
~DedicatedWorkerThread() override;
@@ -55,7 +55,7 @@ class CORE_EXPORT DedicatedWorkerThread : public WorkerThread {
}
protected:
- DedicatedWorkerThread(PassRefPtr<WorkerLoaderProxy>,
+ DedicatedWorkerThread(ThreadableLoadingContext*,
InProcessWorkerObjectProxy&,
double time_origin);
WorkerOrWorkletGlobalScope* CreateWorkerGlobalScope(

Powered by Google App Engine
This is Rietveld 408576698