| Index: third_party/WebKit/Source/modules/storage/StorageClient.h
|
| diff --git a/third_party/WebKit/Source/modules/storage/StorageClient.h b/third_party/WebKit/Source/modules/storage/StorageClient.h
|
| index ef98e4a105172f7c5ef3b146752e233acd1372dd..ef26ffec450bb7817dd1a8d77b37bec46404bafa 100644
|
| --- a/third_party/WebKit/Source/modules/storage/StorageClient.h
|
| +++ b/third_party/WebKit/Source/modules/storage/StorageClient.h
|
| @@ -6,7 +6,7 @@
|
| #define StorageClient_h
|
|
|
| #include "modules/storage/StorageArea.h"
|
| -#include "wtf/PassOwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -16,7 +16,7 @@ class StorageClient {
|
| public:
|
| virtual ~StorageClient() { }
|
|
|
| - virtual PassOwnPtr<StorageNamespace> createSessionStorageNamespace() = 0;
|
| + virtual std::unique_ptr<StorageNamespace> createSessionStorageNamespace() = 0;
|
| virtual bool canAccessStorage(LocalFrame*, StorageType) const = 0;
|
| };
|
|
|
|
|