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

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

Issue 2361613002: DevTools: untangle device discovery request from the devtools android bridge. (Closed)
Patch Set: for landing Created 4 years, 3 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 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;

Powered by Google App Engine
This is Rietveld 408576698