Index: content/public/browser/devtools_external_agent_proxy_delegate.h |
diff --git a/content/public/browser/devtools_external_agent_proxy_delegate.h b/content/public/browser/devtools_external_agent_proxy_delegate.h |
index 3d55c9a7ec525f9ffe125b0908f875f448d6e832..fc410e92422f385b71be52133324cfa25c1de5a3 100644 |
--- a/content/public/browser/devtools_external_agent_proxy_delegate.h |
+++ b/content/public/browser/devtools_external_agent_proxy_delegate.h |
@@ -16,16 +16,46 @@ class DevToolsExternalAgentProxy; |
// Describes the interface for sending messages to an external DevTools agent. |
class DevToolsExternalAgentProxyDelegate { |
public: |
- virtual ~DevToolsExternalAgentProxyDelegate() {} |
+ virtual ~DevToolsExternalAgentProxyDelegate() {} |
- // Informs the agent that a client host has attached. |
- virtual void Attach(DevToolsExternalAgentProxy* proxy) = 0; |
+ // Informs the agent that a client host has attached. |
+ virtual void Attach(DevToolsExternalAgentProxy* proxy) = 0; |
- // Informs the agent that a client host has detached. |
- virtual void Detach() = 0; |
+ // Informs the agent that a client host has detached. |
+ virtual void Detach() = 0; |
- // Sends a message to the agent. |
- virtual void SendMessageToBackend(const std::string& message) = 0; |
+ // Returns agent host id. |
+ virtual std::string GetId() = 0; |
+ |
+ // Returns agent host type. |
+ virtual std::string GetType() = 0; |
+ |
+ // Returns agent host title. |
+ virtual std::string GetTitle() = 0; |
+ |
+ // Returns the agent host description. |
+ virtual std::string GetDescription() = 0; |
+ |
+ // Returns url associated with agent host. |
+ virtual GURL GetURL() = 0; |
+ |
+ // Returns the favicon url for this agent host. |
+ virtual GURL GetFaviconURL() = 0; |
+ |
+ // Activates agent host. |
+ virtual bool Activate() = 0; |
+ |
+ // Initiates external agent host inspection. |
+ virtual bool Inspect() = 0; |
+ |
+ // Reloads agent host. |
+ virtual void Reload() = 0; |
+ |
+ // Reloads agent host. |
+ virtual bool Close() = 0; |
+ |
+ // Sends a message to the agent. |
+ virtual void SendMessageToBackend(const std::string& message) = 0; |
}; |
} // namespace content |