| 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 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 WorkerScriptDebugServer_h | 31 #ifndef WorkerScriptDebugServer_h |
| 32 #define WorkerScriptDebugServer_h | 32 #define WorkerScriptDebugServer_h |
| 33 | 33 |
| 34 #include "core/inspector/PerIsolateDebuggerClient.h" | 34 #include "core/inspector/PerIsolateDebuggerClient.h" |
| 35 #include "platform/heap/Handle.h" |
| 36 #include "wtf/Forward.h" |
| 37 |
| 35 #include <v8.h> | 38 #include <v8.h> |
| 36 | 39 |
| 37 namespace blink { | 40 namespace blink { |
| 38 | 41 |
| 39 class WorkerGlobalScope; | 42 class WorkerGlobalScope; |
| 40 | 43 |
| 41 class WorkerScriptDebugServer final : public PerIsolateDebuggerClient { | 44 class WorkerScriptDebugServer final : public NoBaseWillBeGarbageCollectedFinaliz
ed<WorkerScriptDebugServer>, public PerIsolateDebuggerClient { |
| 42 WTF_MAKE_NONCOPYABLE(WorkerScriptDebugServer); | 45 WTF_MAKE_NONCOPYABLE(WorkerScriptDebugServer); |
| 46 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkerScriptDebugServer); |
| 43 public: | 47 public: |
| 44 static PassOwnPtrWillBeRawPtr<WorkerScriptDebugServer> create(WorkerGlobalSc
ope* workerGlobalScope) | 48 static PassOwnPtrWillBeRawPtr<WorkerScriptDebugServer> create(WorkerGlobalSc
ope* workerGlobalScope) |
| 45 { | 49 { |
| 46 return adoptPtrWillBeNoop(new WorkerScriptDebugServer(workerGlobalScope)
); | 50 return adoptPtrWillBeNoop(new WorkerScriptDebugServer(workerGlobalScope)
); |
| 47 } | 51 } |
| 48 | 52 |
| 49 ~WorkerScriptDebugServer() override { } | 53 ~WorkerScriptDebugServer() override; |
| 50 | 54 |
| 51 static void setContextDebugData(v8::Local<v8::Context>); | 55 static void setContextDebugData(v8::Local<v8::Context>); |
| 52 void addListener(ScriptDebugListener*); | 56 void addListener(ScriptDebugListener*); |
| 53 void removeListener(ScriptDebugListener*); | 57 void removeListener(ScriptDebugListener*); |
| 54 | 58 |
| 59 DECLARE_VIRTUAL_TRACE(); |
| 60 |
| 55 private: | 61 private: |
| 56 explicit WorkerScriptDebugServer(WorkerGlobalScope*); | 62 explicit WorkerScriptDebugServer(WorkerGlobalScope*); |
| 57 | 63 |
| 58 ScriptDebugListener* getDebugListenerForContext(v8::Local<v8::Context>); | 64 ScriptDebugListener* getDebugListenerForContext(v8::Local<v8::Context>); |
| 59 void runMessageLoopOnPause(v8::Local<v8::Context>); | 65 void runMessageLoopOnPause(v8::Local<v8::Context>); |
| 60 void quitMessageLoopOnPause(); | 66 void quitMessageLoopOnPause(); |
| 61 | 67 |
| 62 ScriptDebugListener* m_listener; | 68 ScriptDebugListener* m_listener; |
| 63 RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope; | 69 RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope; |
| 64 }; | 70 }; |
| 65 | 71 |
| 66 } // namespace blink | 72 } // namespace blink |
| 67 | 73 |
| 68 #endif // WorkerScriptDebugServer_h | 74 #endif // WorkerScriptDebugServer_h |
| OLD | NEW |