| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_INSPECTOR_V8INSPECTORSESSIONIMPL_H_ | 5 #ifndef V8_INSPECTOR_V8INSPECTORSESSIONIMPL_H_ |
| 6 #define V8_INSPECTOR_V8INSPECTORSESSIONIMPL_H_ | 6 #define V8_INSPECTOR_V8INSPECTORSESSIONIMPL_H_ |
| 7 | 7 |
| 8 #include "src/inspector/Allocator.h" | 8 #include "src/inspector/Allocator.h" |
| 9 #include "src/inspector/protocol/Forward.h" | 9 #include "src/inspector/protocol/Forward.h" |
| 10 #include "src/inspector/protocol/Runtime.h" | 10 #include "src/inspector/protocol/Runtime.h" |
| 11 #include "src/inspector/protocol/Schema.h" | 11 #include "src/inspector/protocol/Schema.h" |
| 12 #include "src/inspector/public/V8Inspector.h" | |
| 13 #include "src/inspector/public/V8InspectorSession.h" | |
| 14 | 12 |
| 15 #include <v8.h> | 13 #include "include/v8-inspector.h" |
| 14 |
| 16 #include <vector> | 15 #include <vector> |
| 17 | 16 |
| 18 namespace v8_inspector { | 17 namespace v8_inspector { |
| 19 | 18 |
| 20 class InjectedScript; | 19 class InjectedScript; |
| 21 class RemoteObjectIdBase; | 20 class RemoteObjectIdBase; |
| 22 class V8ConsoleAgentImpl; | 21 class V8ConsoleAgentImpl; |
| 23 class V8DebuggerAgentImpl; | 22 class V8DebuggerAgentImpl; |
| 24 class V8InspectorImpl; | 23 class V8InspectorImpl; |
| 25 class V8HeapProfilerAgentImpl; | 24 class V8HeapProfilerAgentImpl; |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent; | 117 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent; |
| 119 std::unique_ptr<V8ConsoleAgentImpl> m_consoleAgent; | 118 std::unique_ptr<V8ConsoleAgentImpl> m_consoleAgent; |
| 120 std::unique_ptr<V8SchemaAgentImpl> m_schemaAgent; | 119 std::unique_ptr<V8SchemaAgentImpl> m_schemaAgent; |
| 121 std::vector<std::unique_ptr<V8InspectorSession::Inspectable>> | 120 std::vector<std::unique_ptr<V8InspectorSession::Inspectable>> |
| 122 m_inspectedObjects; | 121 m_inspectedObjects; |
| 123 }; | 122 }; |
| 124 | 123 |
| 125 } // namespace v8_inspector | 124 } // namespace v8_inspector |
| 126 | 125 |
| 127 #endif // V8_INSPECTOR_V8INSPECTORSESSIONIMPL_H_ | 126 #endif // V8_INSPECTOR_V8INSPECTORSESSIONIMPL_H_ |
| OLD | NEW |