| 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 de6b6cebccccfccb33590a986b04b7df6aa422aa..b92f00362f7a75ac68baaad222a24fa1a0376a06 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| @@ -25,7 +25,7 @@ public:
|
| explicit V8ProfilerAgentImpl(V8Debugger*);
|
| ~V8ProfilerAgentImpl() override;
|
|
|
| - void setInspectorState(PassRefPtr<JSONObject> state) override { m_state = state; }
|
| + void setInspectorState(PassRefPtr<protocol::DictionaryValue> state) override { m_state = state; }
|
| void setFrontend(protocol::Frontend::Profiler* frontend) override { m_frontend = frontend; }
|
| void clearFrontend() override;
|
| void restore() override;
|
| @@ -52,7 +52,7 @@ private:
|
|
|
| V8DebuggerImpl* m_debugger;
|
| v8::Isolate* m_isolate;
|
| - RefPtr<JSONObject> m_state;
|
| + RefPtr<protocol::DictionaryValue> m_state;
|
| protocol::Frontend::Profiler* m_frontend;
|
| bool m_enabled;
|
| bool m_recordingCPUProfile;
|
|
|