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

Side by Side Diff: src/inspector/V8InspectorSessionImpl.h

Issue 2343733002: [inspector] enabled presubmit for inspector sub folder (Closed)
Patch Set: more fixes Created 4 years, 3 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 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 <vector>
9
8 #include "src/inspector/Allocator.h" 10 #include "src/inspector/Allocator.h"
9 #include "src/inspector/protocol/Forward.h" 11 #include "src/inspector/protocol/Forward.h"
10 #include "src/inspector/protocol/Runtime.h" 12 #include "src/inspector/protocol/Runtime.h"
11 #include "src/inspector/protocol/Schema.h" 13 #include "src/inspector/protocol/Schema.h"
12 14
13 #include "include/v8-inspector.h" 15 #include "include/v8-inspector.h"
14 16
15 #include <vector>
16
17 namespace v8_inspector { 17 namespace v8_inspector {
18 18
19 class InjectedScript; 19 class InjectedScript;
20 class RemoteObjectIdBase; 20 class RemoteObjectIdBase;
21 class V8ConsoleAgentImpl; 21 class V8ConsoleAgentImpl;
22 class V8DebuggerAgentImpl; 22 class V8DebuggerAgentImpl;
23 class V8InspectorImpl; 23 class V8InspectorImpl;
24 class V8HeapProfilerAgentImpl; 24 class V8HeapProfilerAgentImpl;
25 class V8ProfilerAgentImpl; 25 class V8ProfilerAgentImpl;
26 class V8RuntimeAgentImpl; 26 class V8RuntimeAgentImpl;
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent; 117 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent;
118 std::unique_ptr<V8ConsoleAgentImpl> m_consoleAgent; 118 std::unique_ptr<V8ConsoleAgentImpl> m_consoleAgent;
119 std::unique_ptr<V8SchemaAgentImpl> m_schemaAgent; 119 std::unique_ptr<V8SchemaAgentImpl> m_schemaAgent;
120 std::vector<std::unique_ptr<V8InspectorSession::Inspectable>> 120 std::vector<std::unique_ptr<V8InspectorSession::Inspectable>>
121 m_inspectedObjects; 121 m_inspectedObjects;
122 }; 122 };
123 123
124 } // namespace v8_inspector 124 } // namespace v8_inspector
125 125
126 #endif // V8_INSPECTOR_V8INSPECTORSESSIONIMPL_H_ 126 #endif // V8_INSPECTOR_V8INSPECTORSESSIONIMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698