| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef StorageNamespace_h | 26 #ifndef StorageNamespace_h |
| 27 #define StorageNamespace_h | 27 #define StorageNamespace_h |
| 28 | 28 |
| 29 #include "modules/ModulesExport.h" | 29 #include "modules/ModulesExport.h" |
| 30 #include "platform/heap/Handle.h" | 30 #include "platform/heap/Handle.h" |
| 31 #include <memory> | 31 #include "wtf/OwnPtr.h" |
| 32 #include "wtf/PassOwnPtr.h" |
| 32 | 33 |
| 33 namespace blink { | 34 namespace blink { |
| 34 | 35 |
| 35 class WebStorageNamespace; | 36 class WebStorageNamespace; |
| 36 class SecurityOrigin; | 37 class SecurityOrigin; |
| 37 class StorageArea; | 38 class StorageArea; |
| 38 | 39 |
| 39 class MODULES_EXPORT StorageNamespace { | 40 class MODULES_EXPORT StorageNamespace { |
| 40 USING_FAST_MALLOC(StorageNamespace); | 41 USING_FAST_MALLOC(StorageNamespace); |
| 41 public: | 42 public: |
| 42 explicit StorageNamespace(std::unique_ptr<WebStorageNamespace>); | 43 explicit StorageNamespace(PassOwnPtr<WebStorageNamespace>); |
| 43 ~StorageNamespace(); | 44 ~StorageNamespace(); |
| 44 | 45 |
| 45 static StorageArea* localStorageArea(SecurityOrigin*); | 46 static StorageArea* localStorageArea(SecurityOrigin*); |
| 46 | 47 |
| 47 StorageArea* storageArea(SecurityOrigin*); | 48 StorageArea* storageArea(SecurityOrigin*); |
| 48 bool isSameNamespace(const WebStorageNamespace& sessionNamespace) const; | 49 bool isSameNamespace(const WebStorageNamespace& sessionNamespace) const; |
| 49 | 50 |
| 50 private: | 51 private: |
| 51 std::unique_ptr<WebStorageNamespace> m_webStorageNamespace; | 52 OwnPtr<WebStorageNamespace> m_webStorageNamespace; |
| 52 }; | 53 }; |
| 53 | 54 |
| 54 } // namespace blink | 55 } // namespace blink |
| 55 | 56 |
| 56 #endif // StorageNamespace_h | 57 #endif // StorageNamespace_h |
| OLD | NEW |