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 <vector> |
| 35 |
34 #include "src/inspector/Allocator.h" | 36 #include "src/inspector/Allocator.h" |
35 #include "src/inspector/protocol/Protocol.h" | 37 #include "src/inspector/protocol/Protocol.h" |
36 | 38 |
37 #include "include/v8-debug.h" | 39 #include "include/v8-debug.h" |
38 #include "include/v8-inspector.h" | 40 #include "include/v8-inspector.h" |
39 | 41 |
40 #include <vector> | |
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 V8RuntimeAgentImpl; | 49 class V8RuntimeAgentImpl; |
50 class V8StackTraceImpl; | 50 class V8StackTraceImpl; |
51 | 51 |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 SessionMap m_sessions; | 139 SessionMap m_sessions; |
140 | 140 |
141 using ConsoleStorageMap = | 141 using ConsoleStorageMap = |
142 protocol::HashMap<int, std::unique_ptr<V8ConsoleMessageStorage>>; | 142 protocol::HashMap<int, std::unique_ptr<V8ConsoleMessageStorage>>; |
143 ConsoleStorageMap m_consoleStorageMap; | 143 ConsoleStorageMap m_consoleStorageMap; |
144 }; | 144 }; |
145 | 145 |
146 } // namespace v8_inspector | 146 } // namespace v8_inspector |
147 | 147 |
148 #endif // V8_INSPECTOR_V8INSPECTORIMPL_H_ | 148 #endif // V8_INSPECTOR_V8INSPECTORIMPL_H_ |
OLD | NEW |