| Index: third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h
|
| index b1e83eeb7f1e1997fe4db8c730c5987f3013daa8..386e21a8dd96ebc3013f518e221c5c675aa496c7 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h
|
| @@ -35,6 +35,7 @@
|
| #include "platform/inspector_protocol/TypeBuilder.h"
|
| #include "platform/v8_inspector/InjectedScriptNative.h"
|
| #include "platform/v8_inspector/InspectedContext.h"
|
| +#include "platform/v8_inspector/V8Console.h"
|
| #include "platform/v8_inspector/V8DebuggerImpl.h"
|
| #include "wtf/PtrUtil.h"
|
|
|
| @@ -114,8 +115,7 @@ public:
|
| v8::HandleScope m_handleScope;
|
| v8::TryCatch m_tryCatch;
|
| v8::Local<v8::Context> m_context;
|
| - v8::Local<v8::Private> m_extensionPrivate;
|
| - v8::MaybeLocal<v8::Object> m_global;
|
| + std::unique_ptr<V8Console::CommandLineAPIScope> m_commandLineAPIScope;
|
| bool m_ignoreExceptionsAndMuteConsole;
|
| V8DebuggerImpl::PauseOnExceptionsState m_previousPauseOnExceptionsState;
|
| bool m_userGesture;
|
|
|