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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 class ExecutionContext; | 49 class ExecutionContext; |
50 class ServiceWorker; | 50 class ServiceWorker; |
51 class WebServiceWorker; | 51 class WebServiceWorker; |
52 class WebServiceWorkerProvider; | 52 class WebServiceWorkerProvider; |
53 | 53 |
54 class ServiceWorkerContainer FINAL | 54 class ServiceWorkerContainer FINAL |
55 : public RefCountedWillBeGarbageCollectedFinalized<ServiceWorkerContainer> | 55 : public RefCountedWillBeGarbageCollectedFinalized<ServiceWorkerContainer> |
56 , public ScriptWrappable | 56 , public ScriptWrappable |
57 , public ContextLifecycleObserver | 57 , public ContextLifecycleObserver |
58 , public WebServiceWorkerProviderClient { | 58 , public WebServiceWorkerProviderClient { |
| 59 DEFINE_WRAPPERTYPEINFO(); |
59 public: | 60 public: |
60 static PassRefPtrWillBeRawPtr<ServiceWorkerContainer> create(ExecutionContex
t*); | 61 static PassRefPtrWillBeRawPtr<ServiceWorkerContainer> create(ExecutionContex
t*); |
61 ~ServiceWorkerContainer(); | 62 ~ServiceWorkerContainer(); |
62 | 63 |
63 void willBeDetachedFromFrame(); | 64 void willBeDetachedFromFrame(); |
64 | 65 |
65 void trace(Visitor*); | 66 void trace(Visitor*); |
66 | 67 |
67 PassRefPtrWillBeRawPtr<ServiceWorker> active() { return m_active.get(); } | 68 PassRefPtrWillBeRawPtr<ServiceWorker> active() { return m_active.get(); } |
68 PassRefPtrWillBeRawPtr<ServiceWorker> controller() { return m_controller.get
(); } | 69 PassRefPtrWillBeRawPtr<ServiceWorker> controller() { return m_controller.get
(); } |
(...skipping 23 matching lines...) Expand all Loading... |
92 RefPtrWillBeMember<ServiceWorker> m_active; | 93 RefPtrWillBeMember<ServiceWorker> m_active; |
93 RefPtrWillBeMember<ServiceWorker> m_controller; | 94 RefPtrWillBeMember<ServiceWorker> m_controller; |
94 RefPtrWillBeMember<ServiceWorker> m_installing; | 95 RefPtrWillBeMember<ServiceWorker> m_installing; |
95 RefPtrWillBeMember<ServiceWorker> m_waiting; | 96 RefPtrWillBeMember<ServiceWorker> m_waiting; |
96 PersistentWillBeMember<ReadyProperty> m_ready; | 97 PersistentWillBeMember<ReadyProperty> m_ready; |
97 }; | 98 }; |
98 | 99 |
99 } // namespace blink | 100 } // namespace blink |
100 | 101 |
101 #endif // ServiceWorkerContainer_h | 102 #endif // ServiceWorkerContainer_h |
OLD | NEW |