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 16 matching lines...) Expand all Loading... |
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 StorageQuotaCallbacksImpl_h | 31 #ifndef StorageQuotaCallbacksImpl_h |
32 #define StorageQuotaCallbacksImpl_h | 32 #define StorageQuotaCallbacksImpl_h |
33 | 33 |
34 #include "bindings/core/v8/ScriptPromiseResolver.h" | 34 #include "bindings/core/v8/ScriptPromiseResolver.h" |
35 #include "modules/ModulesExport.h" | 35 #include "modules/ModulesExport.h" |
36 #include "platform/StorageQuotaCallbacks.h" | 36 #include "platform/StorageQuotaCallbacks.h" |
| 37 #include "wtf/OwnPtr.h" |
37 #include "wtf/PassRefPtr.h" | 38 #include "wtf/PassRefPtr.h" |
38 #include "wtf/RefPtr.h" | 39 #include "wtf/RefPtr.h" |
39 | 40 |
40 namespace blink { | 41 namespace blink { |
41 | 42 |
42 class MODULES_EXPORT StorageQuotaCallbacksImpl final : public StorageQuotaCallba
cks { | 43 class MODULES_EXPORT StorageQuotaCallbacksImpl final : public StorageQuotaCallba
cks { |
43 WTF_MAKE_NONCOPYABLE(StorageQuotaCallbacksImpl); | 44 WTF_MAKE_NONCOPYABLE(StorageQuotaCallbacksImpl); |
44 public: | 45 public: |
45 static StorageQuotaCallbacksImpl* create(ScriptPromiseResolver* resolver) | 46 static StorageQuotaCallbacksImpl* create(ScriptPromiseResolver* resolver) |
46 { | 47 { |
(...skipping 10 matching lines...) Expand all Loading... |
57 | 58 |
58 private: | 59 private: |
59 explicit StorageQuotaCallbacksImpl(ScriptPromiseResolver*); | 60 explicit StorageQuotaCallbacksImpl(ScriptPromiseResolver*); |
60 | 61 |
61 Member<ScriptPromiseResolver> m_resolver; | 62 Member<ScriptPromiseResolver> m_resolver; |
62 }; | 63 }; |
63 | 64 |
64 } // namespace blink | 65 } // namespace blink |
65 | 66 |
66 #endif // StorageQuotaCallbacksImpl_h | 67 #endif // StorageQuotaCallbacksImpl_h |
OLD | NEW |