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

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: all done 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
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..dcdac0eca3a9f64ea8f04c46cec33c622fb05744 100644
--- a/content/public/browser/devtools_external_agent_proxy_delegate.h
+++ b/content/public/browser/devtools_external_agent_proxy_delegate.h
@@ -16,16 +16,43 @@ 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 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

Powered by Google App Engine
This is Rietveld 408576698