| Index: content/ppapi_plugin/ppapi_blink_platform_impl.h
|
| diff --git a/content/ppapi_plugin/ppapi_blink_platform_impl.h b/content/ppapi_plugin/ppapi_blink_platform_impl.h
|
| index e9b8f39c794e9f31b1aea90a01d4f761193b345a..d3f25b4ec7903501b94d615e60f3f7b249e31281 100644
|
| --- a/content/ppapi_plugin/ppapi_blink_platform_impl.h
|
| +++ b/content/ppapi_plugin/ppapi_blink_platform_impl.h
|
| @@ -7,8 +7,9 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "build/build_config.h"
|
| #include "content/child/blink_platform_impl.h"
|
|
|
| @@ -56,7 +57,7 @@ class PpapiBlinkPlatformImpl : public BlinkPlatformImpl {
|
| private:
|
| #if !defined(OS_ANDROID) && !defined(OS_WIN)
|
| class SandboxSupport;
|
| - scoped_ptr<SandboxSupport> sandbox_support_;
|
| + std::unique_ptr<SandboxSupport> sandbox_support_;
|
| #endif
|
|
|
| DISALLOW_COPY_AND_ASSIGN(PpapiBlinkPlatformImpl);
|
|
|