| 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 483262353b982d71ecbd44d8f9c852aa37c8bf7f..44bd045eefdab6b0f1d408a3b1a6e5c3d54e812d 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerInspectorProxy.h
|
| @@ -6,6 +6,7 @@
|
| #define WorkerInspectorProxy_h
|
|
|
| #include "core/CoreExport.h"
|
| +#include "core/workers/WorkerThread.h"
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/Forward.h"
|
|
|
| @@ -15,7 +16,6 @@ class ExecutionContext;
|
| class KURL;
|
| class WebTraceLocation;
|
| class WorkerGlobalScopeProxy;
|
| -class WorkerThread;
|
|
|
| // A proxy for talking to the worker inspector on the worker thread.
|
| // All of these methods should be called on the main thread.
|
| @@ -35,6 +35,7 @@ public:
|
| DEFINE_INLINE_VIRTUAL_TRACE() { }
|
| };
|
|
|
| + WorkerThreadStartMode workerStartMode(ExecutionContext*);
|
| void workerThreadCreated(ExecutionContext*, WorkerThread*, const KURL&);
|
| void workerThreadTerminated();
|
|
|
|
|