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

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

Issue 1163923005: Fix crash in inspector-protocol/debugger/debugger-pause-dedicated-worker.html (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed printf Created 5 years, 6 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
« no previous file with comments | « no previous file | Source/bindings/core/v8/MainThreadDebugger.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 14 matching lines...) Expand all
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 MainThreadDebugger_h 31 #ifndef MainThreadDebugger_h
32 #define MainThreadDebugger_h 32 #define MainThreadDebugger_h
33 33
34 #include "core/CoreExport.h" 34 #include "core/CoreExport.h"
35 #include "core/inspector/InspectorTaskRunner.h"
35 #include "core/inspector/ScriptDebuggerBase.h" 36 #include "core/inspector/ScriptDebuggerBase.h"
36 #include <v8.h> 37 #include <v8.h>
37 38
38 namespace WTF { 39 namespace WTF {
39 class Mutex; 40 class Mutex;
40 } 41 }
41 42
42 namespace blink { 43 namespace blink {
43 44
44 class Page;
45
46 class CORE_EXPORT MainThreadDebugger final : public NoBaseWillBeGarbageCollected Finalized<MainThreadDebugger>, public ScriptDebuggerBase { 45 class CORE_EXPORT MainThreadDebugger final : public NoBaseWillBeGarbageCollected Finalized<MainThreadDebugger>, public ScriptDebuggerBase {
47 WTF_MAKE_NONCOPYABLE(MainThreadDebugger); 46 WTF_MAKE_NONCOPYABLE(MainThreadDebugger);
48 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MainThreadDebugger); 47 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MainThreadDebugger);
49 public: 48 public:
50 class ClientMessageLoop { 49 class ClientMessageLoop {
51 public: 50 public:
52 virtual ~ClientMessageLoop() { } 51 virtual ~ClientMessageLoop() { }
53 virtual void run(LocalFrame*) = 0; 52 virtual void run(LocalFrame*) = 0;
54 virtual void quitNow() = 0; 53 virtual void quitNow() = 0;
55 }; 54 };
56 55
57 static PassOwnPtrWillBeRawPtr<MainThreadDebugger> create(PassOwnPtr<ClientMe ssageLoop> clientMessageLoop, v8::Isolate* isolate) 56 static PassOwnPtrWillBeRawPtr<MainThreadDebugger> create(PassOwnPtr<ClientMe ssageLoop> clientMessageLoop, v8::Isolate* isolate)
58 { 57 {
59 return adoptPtrWillBeNoop(new MainThreadDebugger(clientMessageLoop, isol ate)); 58 return adoptPtrWillBeNoop(new MainThreadDebugger(clientMessageLoop, isol ate));
60 } 59 }
61 60
62 ~MainThreadDebugger() override; 61 ~MainThreadDebugger() override;
63 62
64 static void setContextDebugData(v8::Local<v8::Context>, const String& type, int contextDebugId); 63 static void setContextDebugData(v8::Local<v8::Context>, const String& type, int contextDebugId);
65 void addListener(ScriptDebugListener*, LocalFrame*, int contextDebugId); 64 void addListener(ScriptDebugListener*, LocalFrame*, int contextDebugId);
66 void removeListener(ScriptDebugListener*, LocalFrame*); 65 void removeListener(ScriptDebugListener*, LocalFrame*);
67 66
68 static MainThreadDebugger* instance(); 67 static MainThreadDebugger* instance();
69 static void interruptMainThreadAndRun(PassOwnPtr<V8Debugger::Task>); 68 static void interruptMainThreadAndRun(PassOwnPtr<InspectorTaskRunner::Task>) ;
69 InspectorTaskRunner* taskRunner() const { return m_taskRunner.get(); }
70 70
71 DECLARE_VIRTUAL_TRACE(); 71 DECLARE_VIRTUAL_TRACE();
72 72
73 private: 73 private:
74 MainThreadDebugger(PassOwnPtr<ClientMessageLoop>, v8::Isolate*); 74 MainThreadDebugger(PassOwnPtr<ClientMessageLoop>, v8::Isolate*);
75 75
76 ScriptDebugListener* getDebugListenerForContext(v8::Local<v8::Context>) over ride; 76 ScriptDebugListener* getDebugListenerForContext(v8::Local<v8::Context>) over ride;
77 void runMessageLoopOnPause(v8::Local<v8::Context>) override; 77 void runMessageLoopOnPause(v8::Local<v8::Context>) override;
78 void quitMessageLoopOnPause() override; 78 void quitMessageLoopOnPause() override;
79 79
80 static WTF::Mutex& creationMutex(); 80 static WTF::Mutex& creationMutex();
81 81
82 using ListenersMap = WillBeHeapHashMap<RawPtrWillBeMember<LocalFrame>, Scrip tDebugListener*>; 82 using ListenersMap = WillBeHeapHashMap<RawPtrWillBeMember<LocalFrame>, Scrip tDebugListener*>;
83 ListenersMap m_listenersMap; 83 ListenersMap m_listenersMap;
84 OwnPtr<ClientMessageLoop> m_clientMessageLoop; 84 OwnPtr<ClientMessageLoop> m_clientMessageLoop;
85 RawPtrWillBeMember<LocalFrame> m_pausedFrame; 85 RawPtrWillBeMember<LocalFrame> m_pausedFrame;
86 OwnPtr<InspectorTaskRunner> m_taskRunner;
86 87
87 static MainThreadDebugger* s_instance; 88 static MainThreadDebugger* s_instance;
88 }; 89 };
89 90
90 } // namespace blink 91 } // namespace blink
91 92
92 93
93 #endif // MainThreadDebugger_h 94 #endif // MainThreadDebugger_h
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/core/v8/MainThreadDebugger.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698