OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 14 matching lines...) Expand all Loading... |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef DeprecatedStorageQuota_h | 31 #ifndef DeprecatedStorageQuota_h |
32 #define DeprecatedStorageQuota_h | 32 #define DeprecatedStorageQuota_h |
33 | 33 |
34 #include "bindings/v8/ScriptWrappable.h" | 34 #include "bindings/v8/ScriptWrappable.h" |
35 #include "heap/Handle.h" | |
36 #include "heap/ThreadState.h" | |
37 #include "wtf/PassRefPtr.h" | 35 #include "wtf/PassRefPtr.h" |
38 #include "wtf/RefCounted.h" | 36 #include "wtf/RefCounted.h" |
39 | 37 |
40 namespace WebCore { | 38 namespace WebCore { |
41 | 39 |
42 class ExecutionContext; | 40 class ExecutionContext; |
43 class StorageErrorCallback; | 41 class StorageErrorCallback; |
44 class StorageQuotaCallback; | 42 class StorageQuotaCallback; |
45 class StorageUsageCallback; | 43 class StorageUsageCallback; |
46 | 44 |
47 class DeprecatedStorageQuota : public RefCountedWillBeGarbageCollectedFinalized<
DeprecatedStorageQuota>, public ScriptWrappable { | 45 class DeprecatedStorageQuota : public RefCounted<DeprecatedStorageQuota>, public
ScriptWrappable { |
48 DECLARE_GC_INFO; | |
49 public: | 46 public: |
50 enum Type { | 47 enum Type { |
51 Temporary, | 48 Temporary, |
52 Persistent, | 49 Persistent, |
53 }; | 50 }; |
54 | 51 |
55 static PassRefPtrWillBeRawPtr<DeprecatedStorageQuota> create(Type type) | 52 static PassRefPtr<DeprecatedStorageQuota> create(Type type) |
56 { | 53 { |
57 return adoptRefWillBeNoop(new DeprecatedStorageQuota(type)); | 54 return adoptRef(new DeprecatedStorageQuota(type)); |
58 } | 55 } |
59 | 56 |
60 void queryUsageAndQuota(ExecutionContext*, PassOwnPtr<StorageUsageCallback>,
PassOwnPtr<StorageErrorCallback>); | 57 void queryUsageAndQuota(ExecutionContext*, PassOwnPtr<StorageUsageCallback>,
PassOwnPtr<StorageErrorCallback>); |
61 | 58 |
62 void requestQuota(ExecutionContext*, unsigned long long newQuotaInBytes, Pas
sOwnPtr<StorageQuotaCallback>, PassOwnPtr<StorageErrorCallback>); | 59 void requestQuota(ExecutionContext*, unsigned long long newQuotaInBytes, Pas
sOwnPtr<StorageQuotaCallback>, PassOwnPtr<StorageErrorCallback>); |
63 | 60 |
64 ~DeprecatedStorageQuota(); | 61 ~DeprecatedStorageQuota(); |
65 | 62 |
66 void trace(Visitor*) { } | |
67 | |
68 private: | 63 private: |
69 explicit DeprecatedStorageQuota(Type); | 64 explicit DeprecatedStorageQuota(Type); |
70 Type m_type; | 65 Type m_type; |
71 }; | 66 }; |
72 | 67 |
73 USED_FROM_MULTIPLE_THREADS(DeprecatedStorageQuota); | |
74 | |
75 } // namespace WebCore | 68 } // namespace WebCore |
76 | 69 |
77 #endif // DeprecatedStorageQuota_h | 70 #endif // DeprecatedStorageQuota_h |
OLD | NEW |