| Index: content/ppapi_plugin/ppapi_thread.h
|
| diff --git a/content/ppapi_plugin/ppapi_thread.h b/content/ppapi_plugin/ppapi_thread.h
|
| index 34d807723ae7671ab75aeaab6af7ce7b862e4255..44c1cebfff1fd3e0d89efa3b6ee75dae2a5217ee 100644
|
| --- a/content/ppapi_plugin/ppapi_thread.h
|
| +++ b/content/ppapi_plugin/ppapi_thread.h
|
| @@ -8,11 +8,11 @@
|
| #include <stdint.h>
|
|
|
| #include <map>
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/process/process.h"
|
| #include "base/scoped_native_library.h"
|
| #include "build/build_config.h"
|
| @@ -163,7 +163,7 @@ class PpapiThread : public ChildThreadImpl,
|
| uint32_t next_plugin_dispatcher_id_;
|
|
|
| // The BlinkPlatformImpl implementation.
|
| - scoped_ptr<PpapiBlinkPlatformImpl> blink_platform_impl_;
|
| + std::unique_ptr<PpapiBlinkPlatformImpl> blink_platform_impl_;
|
|
|
| #if defined(OS_WIN)
|
| // Caches the handle to the peer process if this is a broker.
|
|
|