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

Side by Side Diff: content/public/browser/devtools_agent_host.h

Issue 2473003002: content: Cleanup class/struct forward declarations (Closed)
Patch Set: Another missing forward declaration Created 4 years, 1 month 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_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
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
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_
OLDNEW
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/public/browser/devtools_external_agent_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698