OLD | NEW |
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_PUBLIC_BROWSER_DEVTOOLS_AGENT_HOST_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_DEVTOOLS_AGENT_HOST_H_ |
6 #define CONTENT_PUBLIC_BROWSER_DEVTOOLS_AGENT_HOST_H_ | 6 #define CONTENT_PUBLIC_BROWSER_DEVTOOLS_AGENT_HOST_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 12 matching lines...) Expand all Loading... |
23 } | 23 } |
24 | 24 |
25 namespace net { | 25 namespace net { |
26 class ServerSocket; | 26 class ServerSocket; |
27 } | 27 } |
28 | 28 |
29 namespace content { | 29 namespace content { |
30 | 30 |
31 class BrowserContext; | 31 class BrowserContext; |
32 class DevToolsExternalAgentProxyDelegate; | 32 class DevToolsExternalAgentProxyDelegate; |
33 class DevToolsManagerDelegate; | |
34 class DevToolsSocketFactory; | 33 class DevToolsSocketFactory; |
35 class RenderFrameHost; | 34 class RenderFrameHost; |
36 class WebContents; | 35 class WebContents; |
37 | 36 |
38 // Describes interface for managing devtools agents from browser process. | 37 // Describes interface for managing devtools agents from browser process. |
39 class CONTENT_EXPORT DevToolsAgentHost | 38 class CONTENT_EXPORT DevToolsAgentHost |
40 : public base::RefCounted<DevToolsAgentHost> { | 39 : public base::RefCounted<DevToolsAgentHost> { |
41 public: | 40 public: |
42 static char kTypePage[]; | 41 static char kTypePage[]; |
43 static char kTypeFrame[]; | 42 static char kTypeFrame[]; |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 static void DetachAllClients(); | 206 static void DetachAllClients(); |
208 | 207 |
209 protected: | 208 protected: |
210 friend class base::RefCounted<DevToolsAgentHost>; | 209 friend class base::RefCounted<DevToolsAgentHost>; |
211 virtual ~DevToolsAgentHost() {} | 210 virtual ~DevToolsAgentHost() {} |
212 }; | 211 }; |
213 | 212 |
214 } // namespace content | 213 } // namespace content |
215 | 214 |
216 #endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_AGENT_HOST_H_ | 215 #endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_AGENT_HOST_H_ |
OLD | NEW |