Index: cc/trees/layer_tree_host_impl.cc |
diff --git a/cc/trees/layer_tree_host_impl.cc b/cc/trees/layer_tree_host_impl.cc |
index 76a15060abc1b43be3334c9671fa1a23aedc7eb1..4f017db34351e67cc653ffab224365b008981d2d 100644 |
--- a/cc/trees/layer_tree_host_impl.cc |
+++ b/cc/trees/layer_tree_host_impl.cc |
@@ -3335,7 +3335,7 @@ void LayerTreeHostImpl::PinchGestureEnd() { |
std::unique_ptr<BeginFrameCallbackList> |
LayerTreeHostImpl::ProcessLayerTreeMutations() { |
- auto callbacks = make_scoped_ptr(new BeginFrameCallbackList()); |
+ std::unique_ptr<BeginFrameCallbackList> callbacks(new BeginFrameCallbackList); |
if (mutator_) { |
const base::Closure& callback = mutator_->TakeMutations(); |
if (!callback.is_null()) |