| 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 13 matching lines...) Expand all Loading... |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 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 ServiceWorker_h | 31 #ifndef ServiceWorker_h |
| 32 #define ServiceWorker_h | 32 #define ServiceWorker_h |
| 33 | 33 |
| 34 #include "heap/Handle.h" | |
| 35 #include "public/platform/WebServiceWorker.h" | 34 #include "public/platform/WebServiceWorker.h" |
| 36 #include "wtf/OwnPtr.h" | 35 #include "wtf/OwnPtr.h" |
| 37 #include "wtf/PassOwnPtr.h" | 36 #include "wtf/PassOwnPtr.h" |
| 38 #include "wtf/PassRefPtr.h" | 37 #include "wtf/PassRefPtr.h" |
| 39 #include "wtf/RefCounted.h" | 38 #include "wtf/RefCounted.h" |
| 40 | 39 |
| 41 namespace blink { | 40 namespace blink { |
| 42 class WebServiceWorker; | 41 class WebServiceWorker; |
| 43 } | 42 } |
| 44 | 43 |
| 45 namespace WebCore { | 44 namespace WebCore { |
| 46 | 45 |
| 47 class ServiceWorker : public RefCountedWillBeGarbageCollectedFinalized<ServiceWo
rker> { | 46 class ServiceWorker : public RefCounted<ServiceWorker> { |
| 48 DECLARE_GC_INFO; | |
| 49 public: | 47 public: |
| 50 static PassRefPtrWillBeRawPtr<ServiceWorker> create(PassOwnPtr<blink::WebSer
viceWorker> worker) | 48 static PassRefPtr<ServiceWorker> create(PassOwnPtr<blink::WebServiceWorker>
worker) |
| 51 { | 49 { |
| 52 return adoptRefWillBeNoop(new ServiceWorker(worker)); | 50 return adoptRef(new ServiceWorker(worker)); |
| 53 } | 51 } |
| 54 | 52 |
| 55 // For CallbackPromiseAdapter | 53 // For CallbackPromiseAdapter |
| 56 typedef blink::WebServiceWorker WebType; | 54 typedef blink::WebServiceWorker WebType; |
| 57 static PassRefPtrWillBeRawPtr<ServiceWorker> from(WebType* worker) | 55 static PassRefPtr<ServiceWorker> from(WebType* worker) |
| 58 { | 56 { |
| 59 return create(adoptPtr(worker)); | 57 return create(adoptPtr(worker)); |
| 60 } | 58 } |
| 61 | 59 |
| 62 ~ServiceWorker() { } | 60 ~ServiceWorker() { } |
| 63 | 61 |
| 64 void trace(Visitor*) { } | |
| 65 | |
| 66 private: | 62 private: |
| 67 explicit ServiceWorker(PassOwnPtr<blink::WebServiceWorker>); | 63 explicit ServiceWorker(PassOwnPtr<blink::WebServiceWorker>); |
| 68 | 64 |
| 69 OwnPtr<blink::WebServiceWorker> m_outerWorker; | 65 OwnPtr<blink::WebServiceWorker> m_outerWorker; |
| 70 }; | 66 }; |
| 71 | 67 |
| 72 } // namespace WebCore | 68 } // namespace WebCore |
| 73 | 69 |
| 74 #endif // ServiceWorker_h | 70 #endif // ServiceWorker_h |
| OLD | NEW |