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

Unified Diff: cc/test/layer_tree_json_parser_unittest.cc

Issue 1437413002: cc: Remove ScopedPtrVector and cc::remove_if. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: just the vector Created 5 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: cc/test/layer_tree_json_parser_unittest.cc
diff --git a/cc/test/layer_tree_json_parser_unittest.cc b/cc/test/layer_tree_json_parser_unittest.cc
index 5521b37d5336ba3544235894d8813bf0aea25b45..c39423f3f9e62418f750c4384eb74bf481ce385f 100644
--- a/cc/test/layer_tree_json_parser_unittest.cc
+++ b/cc/test/layer_tree_json_parser_unittest.cc
@@ -50,7 +50,7 @@ bool LayerTreesMatch(LayerImpl* const layer_impl,
for (size_t i = 0; i < layer_impl->children().size(); ++i) {
RETURN_IF_EXPECTATION_FAILS(EXPECT_TRUE(LayerTreesMatch(
- layer_impl->children()[i], layer->children()[i].get())));
+ layer_impl->children()[i].get(), layer->children()[i].get())));
}
return true;

Powered by Google App Engine
This is Rietveld 408576698