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