| Index: third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
|
| index b1702cac560a31833b4c46d65515f1af5786be54..a959370ecd42be5cede71be4904f3d06de7a7308 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8HeapProfilerAgentImpl.h
|
| @@ -16,10 +16,10 @@ class V8InspectorSessionImpl;
|
|
|
| using protocol::Maybe;
|
|
|
| -class V8HeapProfilerAgentImpl : public protocol::Backend::HeapProfiler {
|
| +class V8HeapProfilerAgentImpl : public protocol::HeapProfiler::Backend {
|
| PROTOCOL_DISALLOW_COPY(V8HeapProfilerAgentImpl);
|
| public:
|
| - V8HeapProfilerAgentImpl(V8InspectorSessionImpl*, protocol::Frontend::HeapProfiler*, protocol::DictionaryValue* state);
|
| + V8HeapProfilerAgentImpl(V8InspectorSessionImpl*, protocol::HeapProfiler::Frontend*, protocol::DictionaryValue* state);
|
| ~V8HeapProfilerAgentImpl() override;
|
| void restore();
|
|
|
| @@ -48,7 +48,7 @@ private:
|
|
|
| V8InspectorSessionImpl* m_session;
|
| v8::Isolate* m_isolate;
|
| - protocol::Frontend::HeapProfiler* m_frontend;
|
| + protocol::HeapProfiler::Frontend* m_frontend;
|
| protocol::DictionaryValue* m_state;
|
| bool m_hasTimer;
|
| };
|
|
|