| 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 InspectorSession_h | 5 #ifndef InspectorSession_h |
| 6 #define InspectorSession_h | 6 #define InspectorSession_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/inspector/protocol/Forward.h" | 9 #include "core/inspector/protocol/Forward.h" |
| 10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| 11 #include "platform/v8_inspector/public/V8Inspector.h" | |
| 12 #include "platform/v8_inspector/public/V8InspectorSession.h" | |
| 13 #include "wtf/Forward.h" | 11 #include "wtf/Forward.h" |
| 14 #include "wtf/Vector.h" | 12 #include "wtf/Vector.h" |
| 15 #include "wtf/text/WTFString.h" | 13 #include "wtf/text/WTFString.h" |
| 16 | 14 |
| 17 namespace v8_inspector { | 15 #include <v8-inspector-protocol.h> |
| 18 class V8Inspector; | |
| 19 } | |
| 20 | 16 |
| 21 namespace blink { | 17 namespace blink { |
| 22 | 18 |
| 23 class ExecutionContext; | 19 class ExecutionContext; |
| 24 class InspectorAgent; | 20 class InspectorAgent; |
| 25 class InstrumentingAgents; | 21 class InstrumentingAgents; |
| 26 class LocalFrame; | 22 class LocalFrame; |
| 27 | 23 |
| 28 class CORE_EXPORT InspectorSession | 24 class CORE_EXPORT InspectorSession |
| 29 : public GarbageCollectedFinalized<InspectorSession> | 25 : public GarbageCollectedFinalized<InspectorSession> |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 std::unique_ptr<protocol::UberDispatcher> m_inspectorBackendDispatcher; | 64 std::unique_ptr<protocol::UberDispatcher> m_inspectorBackendDispatcher; |
| 69 std::unique_ptr<protocol::DictionaryValue> m_state; | 65 std::unique_ptr<protocol::DictionaryValue> m_state; |
| 70 HeapVector<Member<InspectorAgent>> m_agents; | 66 HeapVector<Member<InspectorAgent>> m_agents; |
| 71 Vector<String> m_notificationQueue; | 67 Vector<String> m_notificationQueue; |
| 72 String m_lastSentState; | 68 String m_lastSentState; |
| 73 }; | 69 }; |
| 74 | 70 |
| 75 } // namespace blink | 71 } // namespace blink |
| 76 | 72 |
| 77 #endif // !defined(InspectorSession_h) | 73 #endif // !defined(InspectorSession_h) |
| OLD | NEW |