Index: third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h |
diff --git a/third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h b/third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h |
index 0285d3b2e95c1b6021048303e75162e016ea344a..5ec265c36b196ac81b422f6174e2c8b21149e568 100644 |
--- a/third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h |
+++ b/third_party/WebKit/Source/platform/AsyncFileSystemCallbacks.h |
@@ -39,6 +39,7 @@ |
#include "wtf/Assertions.h" |
#include "wtf/Noncopyable.h" |
#include "wtf/text/WTFString.h" |
+#include <memory> |
namespace blink { |
@@ -70,7 +71,7 @@ public: |
virtual void didReadDirectoryEntries(bool hasMore) { ASSERT_NOT_REACHED(); } |
// Called when an AsyncFileWrter has been created successfully. |
- virtual void didCreateFileWriter(PassOwnPtr<WebFileWriter>, long long length) { ASSERT_NOT_REACHED(); } |
+ virtual void didCreateFileWriter(std::unique_ptr<WebFileWriter>, long long length) { ASSERT_NOT_REACHED(); } |
// Called when there was an error. |
virtual void didFail(int code) = 0; |