| Index: cc/blink/web_image_layer_impl.h
|
| diff --git a/cc/blink/web_image_layer_impl.h b/cc/blink/web_image_layer_impl.h
|
| index d2775fb7e34eb1c4e9d5bc4d811542aac2d99417..84433bd626d5bb538e5a82632ccacf13db38eb8c 100644
|
| --- a/cc/blink/web_image_layer_impl.h
|
| +++ b/cc/blink/web_image_layer_impl.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef CC_BLINK_WEB_IMAGE_LAYER_IMPL_H_
|
| #define CC_BLINK_WEB_IMAGE_LAYER_IMPL_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "cc/blink/cc_blink_export.h"
|
| #include "third_party/WebKit/public/platform/WebImageLayer.h"
|
|
|
| @@ -25,7 +26,7 @@ class WebImageLayerImpl : public blink::WebImageLayer {
|
| void setNearestNeighbor(bool nearest_neighbor) override;
|
|
|
| private:
|
| - scoped_ptr<WebLayerImpl> layer_;
|
| + std::unique_ptr<WebLayerImpl> layer_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(WebImageLayerImpl);
|
| };
|
|
|