OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 WorkerGlobalScopeCrypto_h | 31 #ifndef WorkerGlobalScopeCrypto_h |
32 #define WorkerGlobalScopeCrypto_h | 32 #define WorkerGlobalScopeCrypto_h |
33 | 33 |
34 #include "core/workers/WorkerGlobalScope.h" | 34 #include "core/workers/WorkerGlobalScope.h" |
35 #include "platform/Supplementable.h" | |
36 #include "platform/heap/Handle.h" | |
37 | 35 |
38 namespace blink { | 36 namespace blink { |
39 | 37 |
40 class Crypto; | 38 class Crypto; |
41 class ExecutionContext; | |
42 class WorkerGlobalScope; | 39 class WorkerGlobalScope; |
43 | 40 |
44 class WorkerGlobalScopeCrypto final : public NoBaseWillBeGarbageCollected<Worker
GlobalScopeCrypto>, public WillBeHeapSupplement<WorkerGlobalScope> { | 41 class WorkerGlobalScopeCrypto final : public NoBaseWillBeGarbageCollected<Worker
GlobalScopeCrypto>, public WillBeHeapSupplement<WorkerGlobalScope> { |
45 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkerGlobalScopeCrypto); | 42 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkerGlobalScopeCrypto); |
46 public: | 43 public: |
47 static WorkerGlobalScopeCrypto& from(WillBeHeapSupplementable<WorkerGlobalSc
ope>&); | 44 static WorkerGlobalScopeCrypto& from(WillBeHeapSupplementable<WorkerGlobalSc
ope>&); |
48 static Crypto* crypto(WillBeHeapSupplementable<WorkerGlobalScope>&); | 45 static Crypto* crypto(WillBeHeapSupplementable<WorkerGlobalScope>&); |
49 Crypto* crypto() const; | 46 Crypto* crypto() const; |
50 | 47 |
51 virtual void trace(Visitor*); | 48 virtual void trace(Visitor*); |
52 | 49 |
53 private: | 50 private: |
54 WorkerGlobalScopeCrypto(); | 51 WorkerGlobalScopeCrypto(); |
55 static const char* supplementName(); | 52 static const char* supplementName(); |
56 | 53 |
57 mutable PersistentWillBeMember<Crypto> m_crypto; | 54 mutable PersistentWillBeMember<Crypto> m_crypto; |
58 }; | 55 }; |
59 | 56 |
60 } // namespace blink | 57 } // namespace blink |
61 | 58 |
62 #endif // WorkerGlobalScopeCrypto_h | 59 #endif // WorkerGlobalScopeCrypto_h |
OLD | NEW |