Index: cc/layers/solid_color_scrollbar_layer_impl.h |
diff --git a/cc/layers/solid_color_scrollbar_layer_impl.h b/cc/layers/solid_color_scrollbar_layer_impl.h |
index 1cb03c76269882e2b7fdc2c5bc2eedc2bee155b5..2ecba03fd86adac2554b3e86b2e147843333b690 100644 |
--- a/cc/layers/solid_color_scrollbar_layer_impl.h |
+++ b/cc/layers/solid_color_scrollbar_layer_impl.h |
@@ -12,7 +12,7 @@ namespace cc { |
class CC_EXPORT SolidColorScrollbarLayerImpl : public ScrollbarLayerImplBase { |
public: |
- static scoped_ptr<SolidColorScrollbarLayerImpl> Create( |
+ static std::unique_ptr<SolidColorScrollbarLayerImpl> Create( |
LayerTreeImpl* tree_impl, |
int id, |
ScrollbarOrientation orientation, |
@@ -23,7 +23,7 @@ class CC_EXPORT SolidColorScrollbarLayerImpl : public ScrollbarLayerImplBase { |
~SolidColorScrollbarLayerImpl() override; |
// LayerImpl overrides. |
- scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; |
+ std::unique_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; |
void PushPropertiesTo(LayerImpl* layer) override; |
void AppendQuads(RenderPass* render_pass, |