| 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" | 9 #include "platform/inspector_protocol/Collections.h" |
| 10 #include "platform/inspector_protocol/DispatcherBase.h" | 10 #include "platform/inspector_protocol/DispatcherBase.h" |
| 11 #include "platform/inspector_protocol/String16.h" | 11 #include "platform/inspector_protocol/String16.h" |
| 12 #include "platform/inspector_protocol/TypeBuilder.h" | 12 #include "platform/v8_inspector/protocol/Runtime.h" |
| 13 #include "platform/v8_inspector/public/V8InspectorSession.h" | 13 #include "platform/v8_inspector/public/V8InspectorSession.h" |
| 14 #include "platform/v8_inspector/public/V8InspectorSessionClient.h" | 14 #include "platform/v8_inspector/public/V8InspectorSessionClient.h" |
| 15 #include "wtf/PtrUtil.h" | 15 #include "wtf/PtrUtil.h" |
| 16 | 16 |
| 17 #include <v8.h> | 17 #include <v8.h> |
| 18 | 18 |
| 19 namespace blink { | 19 namespace blink { |
| 20 | 20 |
| 21 class InjectedScript; | 21 class InjectedScript; |
| 22 class RemoteObjectIdBase; | 22 class RemoteObjectIdBase; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 std::unique_ptr<V8RuntimeAgentImpl> m_runtimeAgent; | 87 std::unique_ptr<V8RuntimeAgentImpl> m_runtimeAgent; |
| 88 std::unique_ptr<V8DebuggerAgentImpl> m_debuggerAgent; | 88 std::unique_ptr<V8DebuggerAgentImpl> m_debuggerAgent; |
| 89 std::unique_ptr<V8HeapProfilerAgentImpl> m_heapProfilerAgent; | 89 std::unique_ptr<V8HeapProfilerAgentImpl> m_heapProfilerAgent; |
| 90 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent; | 90 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent; |
| 91 protocol::Vector<std::unique_ptr<V8InspectorSession::Inspectable>> m_inspect
edObjects; | 91 protocol::Vector<std::unique_ptr<V8InspectorSession::Inspectable>> m_inspect
edObjects; |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 } // namespace blink | 94 } // namespace blink |
| 95 | 95 |
| 96 #endif | 96 #endif |
| OLD | NEW |