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
3 // found in the LICENSE file.
5 #ifndef CONTENT_PUBLIC_BROWSER_DEVTOOLS_AGENT_HOST_H_
6 #define CONTENT_PUBLIC_BROWSER_DEVTOOLS_AGENT_HOST_H_
11 #include "base/basictypes.h"
12 #include "base/callback.h"
13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h"
15 #include "content/common/content_export.h"
16 #include "content/public/browser/devtools_agent_host_client.h"
20 class SingleThreadTaskRunner
;
30 class DevToolsExternalAgentProxyDelegate
;
33 // Describes interface for managing devtools agents from browser process.
34 class CONTENT_EXPORT DevToolsAgentHost
35 : public base::RefCounted
<DevToolsAgentHost
> {
38 // Agent host associated with WebContents.
41 // Agent host associated with RenderFrameHost.
44 // Agent host associated with shared worker.
47 // Agent host associated with service worker.
50 // Agent host associated with DevToolsExternalAgentProxyDelegate.
53 // Agent host associated with browser.
57 // Latest DevTools protocol version supported.
58 static std::string
GetProtocolVersion();
60 // Returns whether particular version of DevTools protocol is supported.
61 static bool IsSupportedProtocolVersion(const std::string
& version
);
63 // Returns DevToolsAgentHost with a given |id| or nullptr of it doesn't exist.
64 static scoped_refptr
<DevToolsAgentHost
> GetForId(const std::string
& id
);
66 // Returns DevToolsAgentHost that can be used for inspecting |web_contents|.
67 // New DevToolsAgentHost will be created if it does not exist.
68 static scoped_refptr
<DevToolsAgentHost
> GetOrCreateFor(
69 WebContents
* web_contents
);
71 // Returns true iff an instance of DevToolsAgentHost for the |web_contents|
73 static bool HasFor(WebContents
* web_contents
);
75 // Returns DevToolsAgentHost that can be used for inspecting shared worker
76 // with given worker process host id and routing id.
77 static scoped_refptr
<DevToolsAgentHost
> GetForWorker(int worker_process_id
,
80 // Creates DevToolsAgentHost that communicates to the target by means of
81 // provided |delegate|. |delegate| ownership is passed to the created agent
83 static scoped_refptr
<DevToolsAgentHost
> Create(
84 DevToolsExternalAgentProxyDelegate
* delegate
);
86 using CreateServerSocketCallback
=
87 base::Callback
<scoped_ptr
<net::ServerSocket
>(std::string
*)>;
89 // Creates DevToolsAgentHost for the browser, which works with browser-wide
90 // debugging protocol.
91 static scoped_refptr
<DevToolsAgentHost
> CreateForBrowser(
92 scoped_refptr
<base::SingleThreadTaskRunner
> tethering_task_runner
,
93 const CreateServerSocketCallback
& socket_callback
);
95 static bool IsDebuggerAttached(WebContents
* web_contents
);
97 typedef std::vector
<scoped_refptr
<DevToolsAgentHost
> > List
;
99 // Returns all possible DevToolsAgentHosts.
100 static List
GetOrCreateAll();
102 // Client attaches to this agent host to start debugging it.
103 virtual void AttachClient(DevToolsAgentHostClient
* client
) = 0;
105 // Already attached client detaches from this agent host to stop debugging it.
106 virtual void DetachClient() = 0;
108 // Returns true if there is a client attached.
109 virtual bool IsAttached() = 0;
111 // Sends a message to the agent. Returns true if the message is handled.
112 virtual bool DispatchProtocolMessage(const std::string
& message
) = 0;
114 // Starts inspecting element at position (|x|, |y|) in the specified page.
115 virtual void InspectElement(int x
, int y
) = 0;
117 // Returns the unique id of the agent.
118 virtual std::string
GetId() = 0;
120 // Returns web contents instance for this host if any.
121 virtual WebContents
* GetWebContents() = 0;
123 // Returns related browser context instance if available.
124 virtual BrowserContext
* GetBrowserContext() = 0;
126 // Temporarily detaches render view host from this host. Must be followed by
127 // a call to ConnectWebContents (may leak the host instance otherwise).
128 virtual void DisconnectWebContents() = 0;
130 // Attaches render view host to this host.
131 virtual void ConnectWebContents(WebContents
* web_contents
) = 0;
133 // Returns agent host type.
134 virtual Type
GetType() = 0;
136 // Returns agent host title.
137 virtual std::string
GetTitle() = 0;
139 // Returns url associated with agent host.
140 virtual GURL
GetURL() = 0;
142 // Activates agent host. Returns false if the operation failed.
143 virtual bool Activate() = 0;
145 // Closes agent host. Returns false if the operation failed.
146 virtual bool Close() = 0;
148 // Terminates all debugging sessions and detaches all clients.
149 static void DetachAllClients();
151 typedef base::Callback
<void(DevToolsAgentHost
*, bool attached
)>
154 static void AddAgentStateCallback(const AgentStateCallback
& callback
);
155 static void RemoveAgentStateCallback(const AgentStateCallback
& callback
);
158 friend class base::RefCounted
<DevToolsAgentHost
>;
159 virtual ~DevToolsAgentHost() {}
162 } // namespace content
164 #endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_AGENT_HOST_H_