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

Unified Diff: content/test/fuzzer/renderer_tree_fuzzer.cc

Issue 2816513002: Revert of Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « content/renderer/gpu/actions_parser.cc ('k') | dbus/values_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/fuzzer/renderer_tree_fuzzer.cc
diff --git a/content/test/fuzzer/renderer_tree_fuzzer.cc b/content/test/fuzzer/renderer_tree_fuzzer.cc
index ecb62900414003a9a7b8b2e034e8d210830d989f..d941b55bebd1c5ff1f6b329fac28b3838f4660d7 100644
--- a/content/test/fuzzer/renderer_tree_fuzzer.cc
+++ b/content/test/fuzzer/renderer_tree_fuzzer.cc
@@ -157,7 +157,7 @@
}
for (const auto& listItem : *list) {
- std::unique_ptr<Node> node(Node::ParseJson(listItem));
+ std::unique_ptr<Node> node(Node::ParseJson(*listItem));
if (node) {
push_back(std::move(node));
}
« no previous file with comments | « content/renderer/gpu/actions_parser.cc ('k') | dbus/values_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698