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

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

Issue 2740143002: Change base::Value::ListStorage to std::vector<base::Value> (Closed)
Patch Set: Comment Updates Created 3 years, 9 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: 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 d941b55bebd1c5ff1f6b329fac28b3838f4660d7..ecb62900414003a9a7b8b2e034e8d210830d989f 100644
--- a/content/test/fuzzer/renderer_tree_fuzzer.cc
+++ b/content/test/fuzzer/renderer_tree_fuzzer.cc
@@ -157,7 +157,7 @@ class NodeList : public std::vector<std::unique_ptr<Node>> {
}
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));
}

Powered by Google App Engine
This is Rietveld 408576698