| Index: third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.h
|
| diff --git a/third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.h b/third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.h
|
| index c40cd4ae0fb59324ecc1f638d032aa11ef5814d9..dd7d347dabf9e2485c0f18f211de344cd80d56bf 100644
|
| --- a/third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebEmbeddedWorkerImpl.h
|
| @@ -47,7 +47,7 @@ class WebServiceWorkerNetworkProvider;
|
| class WebView;
|
| class WorkerInspectorProxy;
|
| class WorkerScriptLoader;
|
| -class WorkerThread;
|
| +class WorkerScript;
|
|
|
| class WebEmbeddedWorkerImpl final
|
| : public WebEmbeddedWorker
|
| @@ -85,7 +85,7 @@ private:
|
| void resumeStartup() override;
|
|
|
| void onScriptLoaderFinished();
|
| - void startWorkerThread();
|
| + void startWorkerScript();
|
|
|
| // WorkerLoaderProxyProvider
|
| void postTaskToLoader(PassOwnPtr<ExecutionContextTask>) override;
|
| @@ -106,7 +106,7 @@ private:
|
| // Kept around only while main script loading is ongoing.
|
| RefPtr<WorkerScriptLoader> m_mainScriptLoader;
|
|
|
| - RefPtr<WorkerThread> m_workerThread;
|
| + RefPtr<WorkerScript> m_workerScript;
|
| RefPtr<WorkerLoaderProxy> m_loaderProxy;
|
| OwnPtrWillBePersistent<ServiceWorkerGlobalScopeProxy> m_workerGlobalScopeProxy;
|
| OwnPtrWillBePersistent<WorkerInspectorProxy> m_workerInspectorProxy;
|
|
|