OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 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 17 matching lines...) Expand all Loading... |
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 StorageQuota_h | 31 #ifndef StorageQuota_h |
32 #define StorageQuota_h | 32 #define StorageQuota_h |
33 | 33 |
34 #include "bindings/v8/ScriptPromise.h" | 34 #include "bindings/v8/ScriptPromise.h" |
35 #include "bindings/v8/ScriptWrappable.h" | 35 #include "bindings/v8/ScriptWrappable.h" |
36 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
37 #include "wtf/Forward.h" | 37 #include "wtf/Forward.h" |
38 #include "wtf/PassRefPtr.h" | |
39 #include "wtf/RefCounted.h" | |
40 | 38 |
41 namespace WebCore { | 39 namespace WebCore { |
42 | 40 |
43 class ExecutionContext; | 41 class ExecutionContext; |
44 | 42 |
45 class StorageQuota FINAL : public RefCountedWillBeGarbageCollectedFinalized<Stor
ageQuota>, public ScriptWrappable { | 43 class StorageQuota FINAL : public GarbageCollectedFinalized<StorageQuota>, publi
c ScriptWrappable { |
46 public: | 44 public: |
47 static PassRefPtrWillBeRawPtr<StorageQuota> create() | 45 static StorageQuota* create() |
48 { | 46 { |
49 return adoptRefWillBeNoop(new StorageQuota()); | 47 return new StorageQuota(); |
50 } | 48 } |
51 | 49 |
52 Vector<String> supportedTypes() const; | 50 Vector<String> supportedTypes() const; |
53 | 51 |
54 ScriptPromise queryInfo(ExecutionContext*, String type); | 52 ScriptPromise queryInfo(ExecutionContext*, String type); |
55 ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuo
ta); | 53 ScriptPromise requestPersistentQuota(ScriptState*, unsigned long long newQuo
ta); |
56 | 54 |
57 ~StorageQuota(); | 55 ~StorageQuota(); |
58 | 56 |
59 void trace(Visitor*) { } | 57 void trace(Visitor*) { } |
60 | 58 |
61 private: | 59 private: |
62 StorageQuota(); | 60 StorageQuota(); |
63 }; | 61 }; |
64 | 62 |
65 } // namespace WebCore | 63 } // namespace WebCore |
66 | 64 |
67 #endif // StorageQuota_h | 65 #endif // StorageQuota_h |
OLD | NEW |