Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: Source/bindings/core/v8/WorkerScriptDebugServer.h

Issue 1128273005: Devtools: Move runMessageLoopOnPause and other methods on ScriptDebugServer::Client (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove empty line Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 13 matching lines...) Expand all
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 WorkerScriptDebugServer_h 31 #ifndef WorkerScriptDebugServer_h
32 #define WorkerScriptDebugServer_h 32 #define WorkerScriptDebugServer_h
33 33
34 #include "bindings/core/v8/ScriptDebugServer.h" 34 #include "core/inspector/PerIsolateDebuggerClient.h"
35 #include <v8.h> 35 #include <v8.h>
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class WorkerGlobalScope; 39 class WorkerGlobalScope;
40 40
41 class WorkerScriptDebugServer final : public ScriptDebugServer { 41 class WorkerScriptDebugServer final : public PerIsolateDebuggerClient {
42 WTF_MAKE_NONCOPYABLE(WorkerScriptDebugServer); 42 WTF_MAKE_NONCOPYABLE(WorkerScriptDebugServer);
43 public: 43 public:
44 static PassOwnPtrWillBeRawPtr<WorkerScriptDebugServer> create(WorkerGlobalSc ope* workerGlobalScope) 44 static PassOwnPtrWillBeRawPtr<WorkerScriptDebugServer> create(WorkerGlobalSc ope* workerGlobalScope)
45 { 45 {
46 return adoptPtrWillBeNoop(new WorkerScriptDebugServer(workerGlobalScope) ); 46 return adoptPtrWillBeNoop(new WorkerScriptDebugServer(workerGlobalScope) );
47 } 47 }
48 48
49 ~WorkerScriptDebugServer() override { } 49 ~WorkerScriptDebugServer() override { }
50 DECLARE_VIRTUAL_TRACE();
51 50
52 static void setContextDebugData(v8::Local<v8::Context>); 51 static void setContextDebugData(v8::Local<v8::Context>);
53 void addListener(ScriptDebugListener*); 52 void addListener(ScriptDebugListener*);
54 void removeListener(ScriptDebugListener*); 53 void removeListener(ScriptDebugListener*);
54 ScriptDebugListener* getDebugListenerForContext(v8::Local<v8::Context>);
55 void runMessageLoopOnPause(v8::Local<v8::Context>);
56 void quitMessageLoopOnPause();
55 57
56 private: 58 private:
57 explicit WorkerScriptDebugServer(WorkerGlobalScope*); 59 explicit WorkerScriptDebugServer(WorkerGlobalScope*);
58 60
59 ScriptDebugListener* getDebugListenerForContext(v8::Local<v8::Context>) over ride;
60 void runMessageLoopOnPause(v8::Local<v8::Context>) override;
yurys 2015/05/08 10:59:15 These methods should also stay private for clarity
sergeyv 2015/05/08 13:59:14 Done.
61 void quitMessageLoopOnPause() override;
62
63 ScriptDebugListener* m_listener; 61 ScriptDebugListener* m_listener;
64 RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope; 62 RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
65 }; 63 };
66 64
67 } // namespace blink 65 } // namespace blink
68 66
69 #endif // WorkerScriptDebugServer_h 67 #endif // WorkerScriptDebugServer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698