Index: ppapi/nacl_irt/manifest_service.h |
diff --git a/ppapi/nacl_irt/manifest_service.h b/ppapi/nacl_irt/manifest_service.h |
index 7a869e7c58a8bde1c0d1909b84ab14d01ed6887c..cd2e2331fe4e765efef7e56c762220dd3fd82aa1 100644 |
--- a/ppapi/nacl_irt/manifest_service.h |
+++ b/ppapi/nacl_irt/manifest_service.h |
@@ -5,9 +5,10 @@ |
#ifndef PPAPI_NACL_IRT_MANIFEST_SERVICE_H_ |
#define PPAPI_NACL_IRT_MANIFEST_SERVICE_H_ |
+#include <memory> |
+ |
#include "base/macros.h" |
#include "base/memory/ref_counted.h" |
-#include "base/memory/scoped_ptr.h" |
#include "base/synchronization/lock.h" |
namespace base { |
@@ -34,7 +35,7 @@ class ManifestService { |
bool OpenResource(const char* file, int* fd); |
private: |
- scoped_ptr<IPC::ChannelProxy> channel_; |
+ std::unique_ptr<IPC::ChannelProxy> channel_; |
scoped_refptr<IPC::SyncMessageFilter> filter_; |
base::Lock open_resource_lock_; |