Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(192)

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorSession.h

Issue 2238423002: [DevTools] Generate all files in inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2240663003
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 #include "platform/inspector_protocol/DispatcherBase.h" 10 #include "platform/inspector_protocol/InspectorProtocol.h"
11 #include "platform/inspector_protocol/FrontendChannel.h"
12 #include "platform/inspector_protocol/Values.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 blink { 15 namespace blink {
18 16
19 class ExecutionContext; 17 class ExecutionContext;
20 class InspectorAgent; 18 class InspectorAgent;
21 class InstrumentingAgents; 19 class InstrumentingAgents;
22 class LocalFrame; 20 class LocalFrame;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 std::unique_ptr<protocol::UberDispatcher> m_inspectorBackendDispatcher; 59 std::unique_ptr<protocol::UberDispatcher> m_inspectorBackendDispatcher;
62 std::unique_ptr<protocol::DictionaryValue> m_state; 60 std::unique_ptr<protocol::DictionaryValue> m_state;
63 HeapVector<Member<InspectorAgent>> m_agents; 61 HeapVector<Member<InspectorAgent>> m_agents;
64 Vector<protocol::String16> m_notificationQueue; 62 Vector<protocol::String16> m_notificationQueue;
65 String m_lastSentState; 63 String m_lastSentState;
66 }; 64 };
67 65
68 } // namespace blink 66 } // namespace blink
69 67
70 #endif // !defined(InspectorSession_h) 68 #endif // !defined(InspectorSession_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698