| Index: content/browser/file_descriptor_info_impl.h
|
| diff --git a/content/browser/file_descriptor_info_impl.h b/content/browser/file_descriptor_info_impl.h
|
| index 2195eb99eca4a1c5c3974940fe1a2126e3183020..010e797c1d846dc817dea4f05c06fd300e14162e 100644
|
| --- a/content/browser/file_descriptor_info_impl.h
|
| +++ b/content/browser/file_descriptor_info_impl.h
|
| @@ -7,9 +7,9 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "content/common/content_export.h"
|
| #include "content/public/browser/file_descriptor_info.h"
|
|
|
| @@ -17,7 +17,7 @@ namespace content {
|
|
|
| class FileDescriptorInfoImpl : public FileDescriptorInfo {
|
| public:
|
| - CONTENT_EXPORT static scoped_ptr<FileDescriptorInfo> Create();
|
| + CONTENT_EXPORT static std::unique_ptr<FileDescriptorInfo> Create();
|
|
|
| ~FileDescriptorInfoImpl() override;
|
| void Share(int id, base::PlatformFile fd) override;
|
|
|