Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1015)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h

Issue 1738073002: DevTools: introduce protocol::Value, baseline for hierarchical data in remote debugging protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698