| Index: third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| index 7157e51790bac34b7d3acc8ad2d3b33389aaf117..d2f09ce0e8be1fc512c46b26735b42cd4d66a8b8 100644
|
| --- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| +++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| @@ -44,6 +44,7 @@
|
| namespace blink {
|
|
|
| class InstrumentingAgents;
|
| +class V8Debugger;
|
| class WorkerDebuggerAgent;
|
| class WorkerGlobalScope;
|
| class WorkerRuntimeAgent;
|
| @@ -58,7 +59,7 @@ class WorkerInspectorController final : public RefCountedWillBeGarbageCollectedF
|
| WTF_MAKE_NONCOPYABLE(WorkerInspectorController);
|
| USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerInspectorController);
|
| public:
|
| - explicit WorkerInspectorController(WorkerGlobalScope*);
|
| + static PassRefPtrWillBeRawPtr<WorkerInspectorController> create(WorkerGlobalScope*);
|
| ~WorkerInspectorController();
|
| DECLARE_TRACE();
|
|
|
| @@ -68,6 +69,7 @@ public:
|
| void dispose();
|
|
|
| private:
|
| + WorkerInspectorController(WorkerGlobalScope*, V8Debugger*, int contextGroupId);
|
| friend InstrumentingAgents* instrumentationForWorkerGlobalScope(WorkerGlobalScope*);
|
|
|
| // InspectorRuntimeAgent::Client implementation.
|
|
|