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

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

Issue 251653003: Introduces DevToolsManagerDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix CloudPrintProxyPolicyStartupTest failure Created 6 years, 7 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_manager.h
diff --git a/content/public/browser/devtools_manager.h b/content/public/browser/devtools_manager.h
index 32082ea8bc55a24c1ffea5d1e2e8dcc0b5718352..3deadaf8b65a3e653e433fa7ec39e2f89a1b5324 100644
--- a/content/public/browser/devtools_manager.h
+++ b/content/public/browser/devtools_manager.h
@@ -16,6 +16,7 @@ class Message;
namespace content {
+class BrowserContext;
class DevToolsAgentHost;
class DevToolsClientHost;
@@ -58,6 +59,10 @@ class CONTENT_EXPORT DevToolsManager {
virtual void AddAgentStateCallback(const Callback& callback) = 0;
virtual void RemoveAgentStateCallback(const Callback& callback) = 0;
+
+ // Opens the inspector for |agent_host|.
+ virtual void Inspect(BrowserContext* browser_context,
jam 2014/05/12 15:01:23 why is there a method on both DevToolsManager & De
horo 2014/05/12 16:21:48 Oh, we don't need this. Removed Inspect() from Dev
+ DevToolsAgentHost* agent_host) = 0;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698