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

Unified Diff: cc/test/layer_tree_json_parser.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: cc/test/layer_tree_json_parser.cc
diff --git a/cc/test/layer_tree_json_parser.cc b/cc/test/layer_tree_json_parser.cc
index 11645168b3c4ede8cad8abb8ebf734b0cb083cea..d0738a00f0fb7b632ba32c0ebb65a0c2a4d6f32e 100644
--- a/cc/test/layer_tree_json_parser.cc
+++ b/cc/test/layer_tree_json_parser.cc
@@ -152,7 +152,7 @@ scoped_refptr<Layer> ParseTreeFromValue(const base::Value& val,
success &= dict->GetList("Children", &list);
for (const auto& value : *list) {
- new_layer->AddChild(ParseTreeFromValue(*value, content_client));
+ new_layer->AddChild(ParseTreeFromValue(value, content_client));
}
if (!success)

Powered by Google App Engine
This is Rietveld 408576698