| 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 20 matching lines...) Expand all Loading... |
| 31 #include "wtf/OwnPtr.h" | 31 #include "wtf/OwnPtr.h" |
| 32 #include "wtf/PassOwnPtr.h" | 32 #include "wtf/PassOwnPtr.h" |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 | 35 |
| 36 class WebStorageNamespace; | 36 class WebStorageNamespace; |
| 37 class SecurityOrigin; | 37 class SecurityOrigin; |
| 38 class StorageArea; | 38 class StorageArea; |
| 39 | 39 |
| 40 class MODULES_EXPORT StorageNamespace { | 40 class MODULES_EXPORT StorageNamespace { |
| 41 WTF_MAKE_FAST_ALLOCATED(StorageNamespace); |
| 41 public: | 42 public: |
| 42 explicit StorageNamespace(PassOwnPtr<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 OwnPtr<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 |