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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp

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/core/inspector/InspectorRuntimeAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp
index a213823c6b3fc514c8db76f684749076f1eca8a4..9ee8e1a18e35ad1c1f56dc555140bf0720eef33e 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp
@@ -33,7 +33,7 @@
#include "bindings/core/v8/ScriptState.h"
#include "core/inspector/InspectorTraceEvents.h"
#include "core/inspector/MuteConsoleScope.h"
-#include "platform/JSONValues.h"
+#include "platform/inspector_protocol/Values.h"
#include "platform/v8_inspector/public/V8Debugger.h"
#include "platform/v8_inspector/public/V8RuntimeAgent.h"
@@ -56,7 +56,7 @@ InspectorRuntimeAgent::~InspectorRuntimeAgent()
}
// InspectorBaseAgent overrides.
-void InspectorRuntimeAgent::setState(PassRefPtr<JSONObject> state)
+void InspectorRuntimeAgent::setState(PassRefPtr<protocol::DictionaryValue> state)
{
InspectorBaseAgent::setState(state);
m_v8RuntimeAgent->setInspectorState(m_state);

Powered by Google App Engine
This is Rietveld 408576698