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

Side by Side Diff: content/browser/devtools/render_frame_devtools_agent_host.h

Issue 2575513004: [DevTools] Migrate input domain to new generator. (Closed)
Patch Set: Created 4 years 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ 5 #ifndef CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_
6 #define CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ 6 #define CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_
7 7
8 #include <map> 8 #include <map>
9 #include <memory> 9 #include <memory>
10 10
(...skipping 21 matching lines...) Expand all
32 namespace content { 32 namespace content {
33 33
34 class BrowserContext; 34 class BrowserContext;
35 class DevToolsFrameTraceRecorder; 35 class DevToolsFrameTraceRecorder;
36 class DevToolsProtocolHandler; 36 class DevToolsProtocolHandler;
37 class FrameTreeNode; 37 class FrameTreeNode;
38 class NavigationHandle; 38 class NavigationHandle;
39 class NavigationThrottle; 39 class NavigationThrottle;
40 class RenderFrameHostImpl; 40 class RenderFrameHostImpl;
41 41
42 namespace devtools {
43 namespace input { class InputHandler; }
44 }
45
46 namespace protocol { 42 namespace protocol {
47 class DOMHandler; 43 class DOMHandler;
48 class EmulationHandler; 44 class EmulationHandler;
45 class InputHandler;
49 class InspectorHandler; 46 class InspectorHandler;
50 class IOHandler; 47 class IOHandler;
51 class NetworkHandler; 48 class NetworkHandler;
52 class PageHandler; 49 class PageHandler;
53 class SchemaHandler; 50 class SchemaHandler;
54 class SecurityHandler; 51 class SecurityHandler;
55 class ServiceWorkerHandler; 52 class ServiceWorkerHandler;
56 class StorageHandler; 53 class StorageHandler;
57 class TargetHandler; 54 class TargetHandler;
58 class TracingHandler; 55 class TracingHandler;
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 174
178 class FrameHostHolder; 175 class FrameHostHolder;
179 176
180 std::unique_ptr<FrameHostHolder> current_; 177 std::unique_ptr<FrameHostHolder> current_;
181 std::unique_ptr<FrameHostHolder> pending_; 178 std::unique_ptr<FrameHostHolder> pending_;
182 179
183 // Stores per-host state between DisconnectWebContents and ConnectWebContents. 180 // Stores per-host state between DisconnectWebContents and ConnectWebContents.
184 std::unique_ptr<FrameHostHolder> disconnected_; 181 std::unique_ptr<FrameHostHolder> disconnected_;
185 182
186 std::unique_ptr<protocol::DOMHandler> dom_handler_; 183 std::unique_ptr<protocol::DOMHandler> dom_handler_;
187 std::unique_ptr<devtools::input::InputHandler> input_handler_; 184 std::unique_ptr<protocol::InputHandler> input_handler_;
188 std::unique_ptr<protocol::InspectorHandler> inspector_handler_; 185 std::unique_ptr<protocol::InspectorHandler> inspector_handler_;
189 std::unique_ptr<protocol::IOHandler> io_handler_; 186 std::unique_ptr<protocol::IOHandler> io_handler_;
190 std::unique_ptr<protocol::NetworkHandler> network_handler_; 187 std::unique_ptr<protocol::NetworkHandler> network_handler_;
191 std::unique_ptr<protocol::PageHandler> page_handler_; 188 std::unique_ptr<protocol::PageHandler> page_handler_;
192 std::unique_ptr<protocol::SchemaHandler> schema_handler_; 189 std::unique_ptr<protocol::SchemaHandler> schema_handler_;
193 std::unique_ptr<protocol::SecurityHandler> security_handler_; 190 std::unique_ptr<protocol::SecurityHandler> security_handler_;
194 std::unique_ptr<protocol::ServiceWorkerHandler> service_worker_handler_; 191 std::unique_ptr<protocol::ServiceWorkerHandler> service_worker_handler_;
195 std::unique_ptr<protocol::StorageHandler> storage_handler_; 192 std::unique_ptr<protocol::StorageHandler> storage_handler_;
196 std::unique_ptr<protocol::TargetHandler> target_handler_; 193 std::unique_ptr<protocol::TargetHandler> target_handler_;
197 std::unique_ptr<protocol::TracingHandler> tracing_handler_; 194 std::unique_ptr<protocol::TracingHandler> tracing_handler_;
(...skipping 24 matching lines...) Expand all
222 219
223 // The FrameTreeNode associated with this agent. 220 // The FrameTreeNode associated with this agent.
224 FrameTreeNode* frame_tree_node_; 221 FrameTreeNode* frame_tree_node_;
225 222
226 DISALLOW_COPY_AND_ASSIGN(RenderFrameDevToolsAgentHost); 223 DISALLOW_COPY_AND_ASSIGN(RenderFrameDevToolsAgentHost);
227 }; 224 };
228 225
229 } // namespace content 226 } // namespace content
230 227
231 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ 228 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698