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

Unified Diff: cc/layers/layer_utils_unittest.cc

Issue 1437413002: cc: Remove ScopedPtrVector and cc::remove_if. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « cc/layers/layer_position_constraint_unittest.cc ('k') | cc/layers/picture_layer_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/layer_utils_unittest.cc
diff --git a/cc/layers/layer_utils_unittest.cc b/cc/layers/layer_utils_unittest.cc
index 842688ef1e6f4c47a0c021c17b72eb8d1689fa43..5459921e5de193016b75a0522b05dbd095e9e329 100644
--- a/cc/layers/layer_utils_unittest.cc
+++ b/cc/layers/layer_utils_unittest.cc
@@ -29,8 +29,8 @@ class LayerUtilsGetAnimationBoundsTest : public testing::Test {
&shared_bitmap_manager_,
&task_graph_runner_),
root_(CreateThreeNodeTree(&host_impl_)),
- parent_(root_->children()[0]),
- child_(parent_->children()[0]) {}
+ parent_(root_->children()[0].get()),
+ child_(parent_->children()[0].get()) {}
LayerImpl* root() { return root_.get(); }
LayerImpl* parent() { return parent_; }
« no previous file with comments | « cc/layers/layer_position_constraint_unittest.cc ('k') | cc/layers/picture_layer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698