| 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 59b425457dda3b5f1647ab3002069ef683050a9d..9ff665e6a37246e92005f94c42c8e3aa1b2261e1 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h
|
| @@ -52,10 +52,10 @@ class DictionaryValue;
|
|
|
| using protocol::Maybe;
|
|
|
| -class V8RuntimeAgentImpl : public protocol::Backend::Runtime {
|
| +class V8RuntimeAgentImpl : public protocol::Runtime::Backend {
|
| PROTOCOL_DISALLOW_COPY(V8RuntimeAgentImpl);
|
| public:
|
| - V8RuntimeAgentImpl(V8InspectorSessionImpl*, protocol::Frontend::Runtime*, protocol::DictionaryValue* state);
|
| + V8RuntimeAgentImpl(V8InspectorSessionImpl*, protocol::Runtime::Frontend*, protocol::DictionaryValue* state);
|
| ~V8RuntimeAgentImpl() override;
|
| void restore();
|
|
|
| @@ -120,7 +120,7 @@ public:
|
| private:
|
| V8InspectorSessionImpl* m_session;
|
| protocol::DictionaryValue* m_state;
|
| - protocol::Frontend::Runtime* 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;
|
|
|