Index: third_party/WebKit/Source/web/StorageClientImpl.h |
diff --git a/third_party/WebKit/Source/web/StorageClientImpl.h b/third_party/WebKit/Source/web/StorageClientImpl.h |
index 019b1d37c64101ccc43d38ccf0a2235469665a45..d8de1386fbe077eaeb74b3ea41a8386110f0857e 100644 |
--- a/third_party/WebKit/Source/web/StorageClientImpl.h |
+++ b/third_party/WebKit/Source/web/StorageClientImpl.h |
@@ -6,6 +6,7 @@ |
#define StorageClientImpl_h |
#include "modules/storage/StorageClient.h" |
+#include <memory> |
namespace blink { |
@@ -15,7 +16,7 @@ class StorageClientImpl : public StorageClient { |
public: |
explicit StorageClientImpl(WebViewImpl*); |
- PassOwnPtr<StorageNamespace> createSessionStorageNamespace() override; |
+ std::unique_ptr<StorageNamespace> createSessionStorageNamespace() override; |
bool canAccessStorage(LocalFrame*, StorageType) const override; |
private: |