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

Unified Diff: content/public/browser/devtools_external_agent_proxy_delegate.h

Issue 2263843002: DevTools: merge devtools target with devtools host, part 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for landing 3 Created 4 years, 4 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/browser/devtools_agent_host.h ('k') | content/public/browser/devtools_manager_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « content/public/browser/devtools_agent_host.h ('k') | content/public/browser/devtools_manager_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698