| 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,
|
| + DevToolsAgentHost* agent_host) = 0;
|
| };
|
|
|
| } // namespace content
|
|
|