| Index: third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| index 54fe0b04ed37aa0d457117d9b81b8f1f6476c6db..aeac0f1bf4b5eae956e25f628c403b85dde5426a 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| @@ -18,10 +18,10 @@ namespace blink {
|
|
|
| class V8InspectorSessionImpl;
|
|
|
| -class V8ProfilerAgentImpl : public protocol::Backend::Profiler {
|
| +class V8ProfilerAgentImpl : public protocol::Profiler::Backend {
|
| PROTOCOL_DISALLOW_COPY(V8ProfilerAgentImpl);
|
| public:
|
| - V8ProfilerAgentImpl(V8InspectorSessionImpl*, protocol::Frontend::Profiler*, protocol::DictionaryValue* state);
|
| + V8ProfilerAgentImpl(V8InspectorSessionImpl*, protocol::Profiler::Frontend*, protocol::DictionaryValue* state);
|
| ~V8ProfilerAgentImpl() override;
|
|
|
| bool enabled() const { return m_enabled; }
|
| @@ -47,7 +47,7 @@ private:
|
| V8InspectorSessionImpl* m_session;
|
| v8::Isolate* m_isolate;
|
| protocol::DictionaryValue* m_state;
|
| - protocol::Frontend::Profiler* m_frontend;
|
| + protocol::Profiler::Frontend* m_frontend;
|
| bool m_enabled;
|
| bool m_recordingCPUProfile;
|
| class ProfileDescriptor;
|
|
|