| Index: ppapi/proxy/ppb_image_data_proxy.h
|
| diff --git a/ppapi/proxy/ppb_image_data_proxy.h b/ppapi/proxy/ppb_image_data_proxy.h
|
| index 46fb9afeff4e6638c20f25fc69a0c3370b563067..0e2edb4cd26444dc6ed63d71275b860b83203db1 100644
|
| --- a/ppapi/proxy/ppb_image_data_proxy.h
|
| +++ b/ppapi/proxy/ppb_image_data_proxy.h
|
| @@ -7,8 +7,9 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/shared_memory.h"
|
| #include "build/build_config.h"
|
| #include "ipc/ipc_platform_file.h"
|
| @@ -100,7 +101,7 @@ class PPAPI_PROXY_EXPORT PlatformImageData : public ImageData {
|
| static ImageHandle NullHandle();
|
|
|
| private:
|
| - scoped_ptr<TransportDIB> transport_dib_;
|
| + std::unique_ptr<TransportDIB> transport_dib_;
|
|
|
| // Null when the image isn't mapped.
|
| skia::RefPtr<SkCanvas> mapped_canvas_;
|
|
|