Index: cc/layers/layer_utils_unittest.cc |
diff --git a/cc/layers/layer_utils_unittest.cc b/cc/layers/layer_utils_unittest.cc |
index 771d5bd510614f831a5795494511b4ee8ed1d175..a6c39a6d27b458a7fe3e5d9888e2cb96a879a7e1 100644 |
--- a/cc/layers/layer_utils_unittest.cc |
+++ b/cc/layers/layer_utils_unittest.cc |
@@ -56,7 +56,8 @@ class LayerUtilsGetAnimationBoundsTest : public testing::Test { |
private: |
static LayerImpl* CreateTwoForkTree(LayerTreeHostImpl* host_impl) { |
- scoped_ptr<LayerImpl> root = LayerImpl::Create(host_impl->active_tree(), 1); |
+ std::unique_ptr<LayerImpl> root = |
+ LayerImpl::Create(host_impl->active_tree(), 1); |
LayerImpl* root_ptr = root.get(); |
root->AddChild(LayerImpl::Create(host_impl->active_tree(), 2)); |
root->children()[0]->AddChild( |