| 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 30 matching lines...) Expand all Loading... |
| 41 #include "wtf/OwnPtr.h" | 41 #include "wtf/OwnPtr.h" |
| 42 #include "wtf/PassOwnPtr.h" | 42 #include "wtf/PassOwnPtr.h" |
| 43 #include "wtf/PassRefPtr.h" | 43 #include "wtf/PassRefPtr.h" |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 class ScriptPromiseResolver; | 47 class ScriptPromiseResolver; |
| 48 | 48 |
| 49 class MODULES_EXPORT ServiceWorker final : public AbstractWorker, public ActiveS
criptWrappable, public WebServiceWorkerProxy { | 49 class MODULES_EXPORT ServiceWorker final : public AbstractWorker, public ActiveS
criptWrappable, public WebServiceWorkerProxy { |
| 50 DEFINE_WRAPPERTYPEINFO(); | 50 DEFINE_WRAPPERTYPEINFO(); |
| 51 USING_GARBAGE_COLLECTED_MIXIN(ServiceWorker); |
| 51 public: | 52 public: |
| 52 static ServiceWorker* from(ExecutionContext*, PassOwnPtr<WebServiceWorker::H
andle>); | 53 static ServiceWorker* from(ExecutionContext*, PassOwnPtr<WebServiceWorker::H
andle>); |
| 53 | 54 |
| 54 ~ServiceWorker() override; | 55 ~ServiceWorker() override; |
| 56 DECLARE_VIRTUAL_TRACE(); |
| 55 | 57 |
| 56 // Eager finalization needed to promptly release owned WebServiceWorker. | 58 // Eager finalization needed to promptly release owned WebServiceWorker. |
| 57 EAGERLY_FINALIZE(); | 59 EAGERLY_FINALIZE(); |
| 58 | 60 |
| 59 // Override 'operator new' to enforce allocation of eagerly finalized object
. | |
| 60 DECLARE_EAGER_FINALIZATION_OPERATOR_NEW(); | |
| 61 | |
| 62 void postMessage(ExecutionContext*, PassRefPtr<SerializedScriptValue> messag
e, const MessagePortArray&, ExceptionState&); | 61 void postMessage(ExecutionContext*, PassRefPtr<SerializedScriptValue> messag
e, const MessagePortArray&, ExceptionState&); |
| 63 | 62 |
| 64 String scriptURL() const; | 63 String scriptURL() const; |
| 65 String state() const; | 64 String state() const; |
| 66 DEFINE_ATTRIBUTE_EVENT_LISTENER(statechange); | 65 DEFINE_ATTRIBUTE_EVENT_LISTENER(statechange); |
| 67 | 66 |
| 68 // WebServiceWorkerProxy overrides. | 67 // WebServiceWorkerProxy overrides. |
| 69 void dispatchStateChangeEvent() override; | 68 void dispatchStateChangeEvent() override; |
| 70 | 69 |
| 71 // AbstractWorker overrides. | 70 // AbstractWorker overrides. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 83 void stop() override; | 82 void stop() override; |
| 84 | 83 |
| 85 // A handle to the service worker representation in the embedder. | 84 // A handle to the service worker representation in the embedder. |
| 86 OwnPtr<WebServiceWorker::Handle> m_handle; | 85 OwnPtr<WebServiceWorker::Handle> m_handle; |
| 87 bool m_wasStopped; | 86 bool m_wasStopped; |
| 88 }; | 87 }; |
| 89 | 88 |
| 90 } // namespace blink | 89 } // namespace blink |
| 91 | 90 |
| 92 #endif // ServiceWorker_h | 91 #endif // ServiceWorker_h |
| OLD | NEW |