| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.h
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.h b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.h
|
| index a39b429ddc46d922abd1b7f3d1825ec2e5e8aa3c..0a178d4ac075a74c9c25b3d8a3e8a3332882fda1 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.h
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.h
|
| @@ -43,14 +43,14 @@ public:
|
| static PassOwnPtr<ServiceWorkerThread> create(PassRefPtr<WorkerLoaderProxy>, WorkerReportingProxy&);
|
| ~ServiceWorkerThread() override;
|
|
|
| + WorkerBackingThread& workerBackingThread() override { return *m_workerBackingThread; }
|
| +
|
| protected:
|
| WorkerGlobalScope* createWorkerGlobalScope(PassOwnPtr<WorkerThreadStartupData>) override;
|
| - WebThreadSupportingGC& backingThread() override;
|
|
|
| private:
|
| ServiceWorkerThread(PassRefPtr<WorkerLoaderProxy>, WorkerReportingProxy&);
|
| -
|
| - OwnPtr<WebThreadSupportingGC> m_thread;
|
| + OwnPtr<WorkerBackingThread> m_workerBackingThread;
|
| };
|
|
|
| } // namespace blink
|
|
|