| Index: cc/blink/web_content_layer_impl.h
|
| diff --git a/cc/blink/web_content_layer_impl.h b/cc/blink/web_content_layer_impl.h
|
| index 53fd83c0965a9b67b6a3664cbbaac7152e17f294..227225df9977104e23bdc4cb88242cc8fde24e4f 100644
|
| --- a/cc/blink/web_content_layer_impl.h
|
| +++ b/cc/blink/web_content_layer_impl.h
|
| @@ -7,8 +7,9 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "cc/blink/cc_blink_export.h"
|
| #include "cc/blink/web_layer_impl.h"
|
| #include "cc/layers/content_layer_client.h"
|
| @@ -43,7 +44,7 @@ class WebContentLayerImpl : public blink::WebContentLayer,
|
| bool FillsBoundsCompletely() const override;
|
| size_t GetApproximateUnsharedMemoryUsage() const override;
|
|
|
| - scoped_ptr<WebLayerImpl> layer_;
|
| + std::unique_ptr<WebLayerImpl> layer_;
|
| blink::WebContentLayerClient* client_;
|
|
|
| private:
|
|
|