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

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

Issue 1131263009: Oilpan: fix build after r195134. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: disable trace() impl, non-Oilpan 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
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 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698