Index: third_party/WebKit/Source/core/workers/SharedWorkerThread.h |
diff --git a/third_party/WebKit/Source/core/workers/SharedWorkerThread.h b/third_party/WebKit/Source/core/workers/SharedWorkerThread.h |
index 8e2f07d75ce83702cfe3dd9653a5a963aca8f422..0945805249dcc3786a0b431258d0b392c9f291d7 100644 |
--- a/third_party/WebKit/Source/core/workers/SharedWorkerThread.h |
+++ b/third_party/WebKit/Source/core/workers/SharedWorkerThread.h |
@@ -43,15 +43,16 @@ public: |
static PassOwnPtr<SharedWorkerThread> create(const String& name, PassRefPtr<WorkerLoaderProxy>, WorkerReportingProxy&); |
~SharedWorkerThread() override; |
+ WorkerBackingThread& workerBackingThread() override { return *m_workerBackingThread; } |
+ |
protected: |
WorkerGlobalScope* createWorkerGlobalScope(PassOwnPtr<WorkerThreadStartupData>) override; |
- WebThreadSupportingGC& backingThread() override; |
private: |
SharedWorkerThread(const String& name, PassRefPtr<WorkerLoaderProxy>, WorkerReportingProxy&); |
+ OwnPtr<WorkerBackingThread> m_workerBackingThread; |
String m_name; |
- OwnPtr<WebThreadSupportingGC> m_thread; |
}; |
} // namespace blink |