OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2010, Google Inc. All rights reserved. | 2 * Copyright (c) 2010, 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 Loading... |
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 V8_INSPECTOR_V8INSPECTORIMPL_H_ | 31 #ifndef V8_INSPECTOR_V8INSPECTORIMPL_H_ |
32 #define V8_INSPECTOR_V8INSPECTORIMPL_H_ | 32 #define V8_INSPECTOR_V8INSPECTORIMPL_H_ |
33 | 33 |
34 #include "src/inspector/Allocator.h" | 34 #include "src/base/macros.h" |
35 #include "src/inspector/protocol/Protocol.h" | 35 #include "src/inspector/protocol/Protocol.h" |
36 | 36 |
37 #include "include/v8-debug.h" | 37 #include "include/v8-debug.h" |
38 #include "include/v8-inspector.h" | 38 #include "include/v8-inspector.h" |
39 | 39 |
40 #include <vector> | 40 #include <vector> |
41 | 41 |
42 namespace v8_inspector { | 42 namespace v8_inspector { |
43 | 43 |
44 class InspectedContext; | 44 class InspectedContext; |
45 class V8ConsoleMessageStorage; | 45 class V8ConsoleMessageStorage; |
46 class V8Debugger; | 46 class V8Debugger; |
47 class V8DebuggerAgentImpl; | 47 class V8DebuggerAgentImpl; |
48 class V8InspectorSessionImpl; | 48 class V8InspectorSessionImpl; |
49 class V8ProfilerAgentImpl; | 49 class V8ProfilerAgentImpl; |
50 class V8RuntimeAgentImpl; | 50 class V8RuntimeAgentImpl; |
51 class V8StackTraceImpl; | 51 class V8StackTraceImpl; |
52 | 52 |
53 class V8InspectorImpl : public V8Inspector { | 53 class V8InspectorImpl : public V8Inspector { |
54 V8_INSPECTOR_DISALLOW_COPY(V8InspectorImpl); | 54 DISALLOW_COPY_AND_ASSIGN(V8InspectorImpl); |
55 | 55 |
56 public: | 56 public: |
57 V8InspectorImpl(v8::Isolate*, V8InspectorClient*); | 57 V8InspectorImpl(v8::Isolate*, V8InspectorClient*); |
58 ~V8InspectorImpl() override; | 58 ~V8InspectorImpl() override; |
59 | 59 |
60 v8::Isolate* isolate() const { return m_isolate; } | 60 v8::Isolate* isolate() const { return m_isolate; } |
61 V8InspectorClient* client() { return m_client; } | 61 V8InspectorClient* client() { return m_client; } |
62 V8Debugger* debugger() { return m_debugger.get(); } | 62 V8Debugger* debugger() { return m_debugger.get(); } |
63 | 63 |
64 v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Context>, | 64 v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Context>, |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 SessionMap m_sessions; | 141 SessionMap m_sessions; |
142 | 142 |
143 using ConsoleStorageMap = | 143 using ConsoleStorageMap = |
144 protocol::HashMap<int, std::unique_ptr<V8ConsoleMessageStorage>>; | 144 protocol::HashMap<int, std::unique_ptr<V8ConsoleMessageStorage>>; |
145 ConsoleStorageMap m_consoleStorageMap; | 145 ConsoleStorageMap m_consoleStorageMap; |
146 }; | 146 }; |
147 | 147 |
148 } // namespace v8_inspector | 148 } // namespace v8_inspector |
149 | 149 |
150 #endif // V8_INSPECTOR_V8INSPECTORIMPL_H_ | 150 #endif // V8_INSPECTOR_V8INSPECTORIMPL_H_ |
OLD | NEW |