Index: third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h |
diff --git a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h |
index a86a431b11feade1820efad9a32d926d41759808..15d9016b4bda2424a796cc1647461d661339b9f3 100644 |
--- a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h |
+++ b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h |
@@ -16,7 +16,7 @@ class ExecutionContext; |
class KURL; |
class WebTraceLocation; |
class WorkerGlobalScopeProxy; |
-class WorkerThread; |
+class WorkerScript; |
// A proxy for talking to the worker inspector on the worker thread. |
// All of these methods should be called on the main thread. |
@@ -36,8 +36,8 @@ public: |
DEFINE_INLINE_VIRTUAL_TRACE() { } |
}; |
- void workerThreadCreated(ExecutionContext*, WorkerThread*, const KURL&); |
- void workerThreadTerminated(); |
+ void workerScriptCreated(ExecutionContext*, WorkerScript*, const KURL&); |
+ void workerScriptTerminated(); |
void connectToInspector(PageInspector*); |
void disconnectFromInspector(); |
@@ -54,7 +54,7 @@ private: |
void addDebuggerTaskForWorker(const WebTraceLocation&, PassOwnPtr<WebTaskRunner::Task>); |
- WorkerThread* m_workerThread; |
+ WorkerScript* m_workerScript; |
RawPtrWillBeMember<ExecutionContext> m_executionContext; |
RawPtrWillBeMember<WorkerInspectorProxy::PageInspector> m_pageInspector; |
WorkerGlobalScopeProxy* m_workerGlobalScopeProxy; |