OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/devtools/chrome_devtools_manager_delegate.h" |
| 6 |
| 7 #include "chrome/browser/devtools/devtools_window.h" |
| 8 #include "chrome/browser/profiles/profile.h" |
| 9 #include "content/public/browser/devtools_agent_host.h" |
| 10 |
| 11 ChromeDevToolsManagerDelegate::ChromeDevToolsManagerDelegate() { |
| 12 } |
| 13 |
| 14 ChromeDevToolsManagerDelegate::~ChromeDevToolsManagerDelegate() { |
| 15 } |
| 16 |
| 17 void ChromeDevToolsManagerDelegate::Inspect( |
| 18 content::BrowserContext* browser_context, |
| 19 content::DevToolsAgentHost* agent_host) { |
| 20 if (!agent_host->IsWorker()) { |
| 21 // TODO(horo): Support other types of DevToolsAgentHost when necessary. |
| 22 NOTREACHED() << "Inspect() only supports workers."; |
| 23 } |
| 24 if (Profile* profile = Profile::FromBrowserContext(browser_context)) |
| 25 DevToolsWindow::OpenDevToolsWindowForWorker(profile, agent_host); |
| 26 } |
OLD | NEW |