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

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

Issue 2490473004: [DevTools] Roll third_party/inspector_protocol to e23134c5aa6131e5a3a3afbefce255becce3a3bd. (Closed)
Patch Set: ui_devtools Created 4 years, 1 month 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/InspectorLayerTreeAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorLayerTreeAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorLayerTreeAgent.cpp
index cbe1f85b8320d2eb9214c816a30c06c4d6cbd54c..c2b616b9623016e49f52611aa04f233e2adc3c4a 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorLayerTreeAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorLayerTreeAgent.cpp
@@ -485,8 +485,8 @@ Response InspectorLayerTreeAgent::snapshotCommandLog(
if (!response.isSuccess())
return response;
protocol::ErrorSupport errors;
- std::unique_ptr<protocol::Value> logValue =
- protocol::parseJSON(snapshot->snapshotCommandLog()->toJSONString());
+ std::unique_ptr<protocol::Value> logValue = protocol::StringUtil::parseJSON(
+ snapshot->snapshotCommandLog()->toJSONString());
*commandLog =
Array<protocol::DictionaryValue>::parse(logValue.get(), &errors);
if (errors.hasErrors())
« no previous file with comments | « third_party/WebKit/Source/core/inspector/BUILD.gn ('k') | third_party/WebKit/Source/core/inspector/InspectorSession.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698