| Index: third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.h b/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.h
|
| index 74c1506fd86ae8a3a90a6f61be94f3b137ad8bca..75a9f2738a8439f2daa98a140a902b9ac67f070a 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.h
|
| @@ -31,7 +31,6 @@
|
| #include "bindings/core/v8/V8HiddenValue.h"
|
| #include "bindings/core/v8/WrapperTypeInfo.h"
|
| #include "core/CoreExport.h"
|
| -#include "core/inspector/ScriptDebuggerBase.h"
|
| #include "gin/public/isolate_holder.h"
|
| #include "gin/public/v8_idle_task_runner.h"
|
| #include "wtf/HashMap.h"
|
| @@ -43,6 +42,7 @@
|
| namespace blink {
|
|
|
| class DOMDataStore;
|
| +class MainThreadDebugger;
|
| class StringCache;
|
| class V8Debugger;
|
| struct WrapperTypeInfo;
|
| @@ -123,7 +123,7 @@ public:
|
| void runEndOfScopeTasks();
|
| void clearEndOfScopeTasks();
|
|
|
| - void setScriptDebugger(PassOwnPtr<ScriptDebuggerBase>);
|
| + void setScriptDebugger(PassOwnPtr<MainThreadDebugger>);
|
|
|
| private:
|
| V8PerIsolateData();
|
| @@ -158,7 +158,7 @@ private:
|
| bool m_performingMicrotaskCheckpoint;
|
|
|
| Vector<OwnPtr<EndOfScopeTask>> m_endOfScopeTasks;
|
| - OwnPtr<ScriptDebuggerBase> m_scriptDebugger;
|
| + OwnPtr<MainThreadDebugger> m_scriptDebugger;
|
| };
|
|
|
| } // namespace blink
|
|
|