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 dcdac0eca3a9f64ea8f04c46cec33c622fb05744..b392309012e56a15db5e63c8a49c174bfda1cbee 100644 |
--- a/content/public/browser/devtools_external_agent_proxy_delegate.h |
+++ b/content/public/browser/devtools_external_agent_proxy_delegate.h |
@@ -11,6 +11,7 @@ |
namespace content { |
+class BrowserContext; |
dgozman
2016/09/23 01:05:28
Unused.
|
class DevToolsExternalAgentProxy; |
// Describes the interface for sending messages to an external DevTools agent. |
@@ -39,12 +40,12 @@ class DevToolsExternalAgentProxyDelegate { |
// Returns the favicon url for this agent host. |
virtual GURL GetFaviconURL() = 0; |
+ // Returns the front-end url for this agent host. |
+ virtual std::string GetFrontendURL() = 0; |
+ |
// Activates agent host. |
virtual bool Activate() = 0; |
- // Initiates external agent host inspection. |
- virtual bool Inspect() = 0; |
- |
// Reloads agent host. |
virtual void Reload() = 0; |