OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium 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 V8InspectorSessionImpl_h | 5 #ifndef V8InspectorSessionImpl_h |
6 #define V8InspectorSessionImpl_h | 6 #define V8InspectorSessionImpl_h |
7 | 7 |
8 #include "platform/inspector_protocol/Allocator.h" | 8 #include "platform/inspector_protocol/Allocator.h" |
9 #include "platform/inspector_protocol/Collections.h" | |
10 #include "platform/inspector_protocol/DispatcherBase.h" | 9 #include "platform/inspector_protocol/DispatcherBase.h" |
11 #include "platform/inspector_protocol/Platform.h" | 10 #include "platform/inspector_protocol/Platform.h" |
12 #include "platform/inspector_protocol/String16.h" | 11 #include "platform/inspector_protocol/String16.h" |
13 #include "platform/v8_inspector/protocol/Runtime.h" | 12 #include "platform/v8_inspector/protocol/Runtime.h" |
14 #include "platform/v8_inspector/public/V8InspectorSession.h" | 13 #include "platform/v8_inspector/public/V8InspectorSession.h" |
15 #include "platform/v8_inspector/public/V8InspectorSessionClient.h" | 14 #include "platform/v8_inspector/public/V8InspectorSessionClient.h" |
16 | 15 |
17 #include <v8.h> | 16 #include <v8.h> |
18 | 17 |
| 18 #include <vector> |
| 19 |
19 namespace blink { | 20 namespace blink { |
20 | 21 |
21 class InjectedScript; | 22 class InjectedScript; |
22 class RemoteObjectIdBase; | 23 class RemoteObjectIdBase; |
23 class V8DebuggerAgentImpl; | 24 class V8DebuggerAgentImpl; |
24 class V8DebuggerImpl; | 25 class V8DebuggerImpl; |
25 class V8HeapProfilerAgentImpl; | 26 class V8HeapProfilerAgentImpl; |
26 class V8ProfilerAgentImpl; | 27 class V8ProfilerAgentImpl; |
27 class V8RuntimeAgentImpl; | 28 class V8RuntimeAgentImpl; |
28 | 29 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 bool m_customObjectFormatterEnabled; | 77 bool m_customObjectFormatterEnabled; |
77 int m_instrumentationCounter; | 78 int m_instrumentationCounter; |
78 | 79 |
79 protocol::UberDispatcher m_dispatcher; | 80 protocol::UberDispatcher m_dispatcher; |
80 std::unique_ptr<protocol::DictionaryValue> m_state; | 81 std::unique_ptr<protocol::DictionaryValue> m_state; |
81 | 82 |
82 std::unique_ptr<V8RuntimeAgentImpl> m_runtimeAgent; | 83 std::unique_ptr<V8RuntimeAgentImpl> m_runtimeAgent; |
83 std::unique_ptr<V8DebuggerAgentImpl> m_debuggerAgent; | 84 std::unique_ptr<V8DebuggerAgentImpl> m_debuggerAgent; |
84 std::unique_ptr<V8HeapProfilerAgentImpl> m_heapProfilerAgent; | 85 std::unique_ptr<V8HeapProfilerAgentImpl> m_heapProfilerAgent; |
85 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent; | 86 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent; |
86 protocol::Vector<std::unique_ptr<V8InspectorSession::Inspectable>> m_inspect
edObjects; | 87 std::vector<std::unique_ptr<V8InspectorSession::Inspectable>> m_inspectedObj
ects; |
87 }; | 88 }; |
88 | 89 |
89 } // namespace blink | 90 } // namespace blink |
90 | 91 |
91 #endif | 92 #endif |
OLD | NEW |