| Index: third_party/WebKit/Source/wtf/FilePrintStream.h
|
| diff --git a/third_party/WebKit/Source/wtf/FilePrintStream.h b/third_party/WebKit/Source/wtf/FilePrintStream.h
|
| index 6f4eccdf6cdd7b5f58c074c49d396b1a91b86af2..8756472e24c059ee8e27bd0adfc94f38dd22b7e1 100644
|
| --- a/third_party/WebKit/Source/wtf/FilePrintStream.h
|
| +++ b/third_party/WebKit/Source/wtf/FilePrintStream.h
|
| @@ -26,8 +26,8 @@
|
| #ifndef FilePrintStream_h
|
| #define FilePrintStream_h
|
|
|
| -#include "wtf/PassOwnPtr.h"
|
| #include "wtf/PrintStream.h"
|
| +#include <memory>
|
| #include <stdio.h>
|
|
|
| namespace WTF {
|
| @@ -42,7 +42,7 @@ public:
|
| FilePrintStream(FILE*, AdoptionMode = Adopt);
|
| ~FilePrintStream() override;
|
|
|
| - static PassOwnPtr<FilePrintStream> open(const char* filename, const char* mode);
|
| + static std::unique_ptr<FilePrintStream> open(const char* filename, const char* mode);
|
|
|
| FILE* file() { return m_file; }
|
|
|
|
|