blob: 4683243a6393cbaad51d153946f9c44f7d83d172 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/devtools/chrome_devtools_manager_delegate.h"
#include "chrome/browser/devtools/devtools_network_protocol_handler.h"
#if !defined(OS_ANDROID)
#include "chrome/browser/devtools/devtools_window.h"
#include "chrome/browser/profiles/profile.h"
#include "content/public/browser/devtools_agent_host.h"
#endif // !defined(OS_ANDROID)
ChromeDevToolsManagerDelegate::ChromeDevToolsManagerDelegate()
: network_protocol_handler_(new DevToolsNetworkProtocolHandler()) {
}
ChromeDevToolsManagerDelegate::~ChromeDevToolsManagerDelegate() {
}
void ChromeDevToolsManagerDelegate::Inspect(
content::BrowserContext* browser_context,
content::DevToolsAgentHost* agent_host) {
#if !defined(OS_ANDROID)
content::DevToolsAgentHost::Type type = agent_host->GetType();
if (type != content::DevToolsAgentHost::TYPE_SHARED_WORKER &&
type != content::DevToolsAgentHost::TYPE_SERVICE_WORKER) {
// TODO(horo): Support other types of DevToolsAgentHost when necessary.
NOTREACHED() << "Inspect() only supports workers.";
}
if (Profile* profile = Profile::FromBrowserContext(browser_context))
DevToolsWindow::OpenDevToolsWindowForWorker(profile, agent_host);
#endif // !defined(OS_ANDROID)
}
base::DictionaryValue* ChromeDevToolsManagerDelegate::HandleCommand(
content::DevToolsAgentHost* agent_host,
base::DictionaryValue* command_dict) {
return network_protocol_handler_->HandleCommand(agent_host, command_dict);
}
void ChromeDevToolsManagerDelegate::DevToolsAgentStateChanged(
content::DevToolsAgentHost* agent_host,
bool attached) {
network_protocol_handler_->DevToolsAgentStateChanged(agent_host, attached);
}
|