| Index: third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
|
| index 9ff665e6a37246e92005f94c42c8e3aa1b2261e1..c77dea4a388b7e5f17baa233e6e4cfb68beffc1e 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
|
| @@ -32,9 +32,8 @@
|
| #define V8RuntimeAgentImpl_h
|
|
|
| #include "platform/inspector_protocol/Allocator.h"
|
| -#include "platform/inspector_protocol/Backend.h"
|
| -#include "platform/inspector_protocol/Frontend.h"
|
| #include "platform/inspector_protocol/String16.h"
|
| +#include "platform/inspector_protocol/TypeBuilder.h"
|
|
|
| #include <v8.h>
|
|
|
| @@ -55,7 +54,7 @@ using protocol::Maybe;
|
| class V8RuntimeAgentImpl : public protocol::Runtime::Backend {
|
| PROTOCOL_DISALLOW_COPY(V8RuntimeAgentImpl);
|
| public:
|
| - V8RuntimeAgentImpl(V8InspectorSessionImpl*, protocol::Runtime::Frontend*, protocol::DictionaryValue* state);
|
| + V8RuntimeAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*, protocol::DictionaryValue* state);
|
| ~V8RuntimeAgentImpl() override;
|
| void restore();
|
|
|
| @@ -120,7 +119,7 @@ public:
|
| private:
|
| V8InspectorSessionImpl* m_session;
|
| protocol::DictionaryValue* m_state;
|
| - protocol::Runtime::Frontend* m_frontend;
|
| + protocol::Runtime::Frontend m_frontend;
|
| V8DebuggerImpl* m_debugger;
|
| bool m_enabled;
|
| protocol::HashMap<String16, std::unique_ptr<v8::Global<v8::Script>>> m_compiledScripts;
|
|
|