OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/browser/devtools/browser_devtools_agent_host.h" | 5 #include "content/browser/devtools/browser_devtools_agent_host.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "content/browser/devtools/devtools_protocol_handler.h" | 8 #include "content/browser/devtools/devtools_protocol_handler.h" |
9 #include "content/browser/devtools/protocol/io_handler.h" | 9 #include "content/browser/devtools/protocol/io_handler.h" |
10 #include "content/browser/devtools/protocol/memory_handler.h" | 10 #include "content/browser/devtools/protocol/memory_handler.h" |
(...skipping 12 matching lines...) Expand all Loading... | |
23 BrowserDevToolsAgentHost::BrowserDevToolsAgentHost( | 23 BrowserDevToolsAgentHost::BrowserDevToolsAgentHost( |
24 scoped_refptr<base::SingleThreadTaskRunner> tethering_task_runner, | 24 scoped_refptr<base::SingleThreadTaskRunner> tethering_task_runner, |
25 const CreateServerSocketCallback& socket_callback) | 25 const CreateServerSocketCallback& socket_callback) |
26 : io_handler_(new devtools::io::IOHandler(GetIOContext())), | 26 : io_handler_(new devtools::io::IOHandler(GetIOContext())), |
27 memory_handler_(new devtools::memory::MemoryHandler()), | 27 memory_handler_(new devtools::memory::MemoryHandler()), |
28 system_info_handler_(new devtools::system_info::SystemInfoHandler()), | 28 system_info_handler_(new devtools::system_info::SystemInfoHandler()), |
29 tethering_handler_( | 29 tethering_handler_( |
30 new devtools::tethering::TetheringHandler(socket_callback, | 30 new devtools::tethering::TetheringHandler(socket_callback, |
31 tethering_task_runner)), | 31 tethering_task_runner)), |
32 tracing_handler_(new devtools::tracing::TracingHandler( | 32 tracing_handler_(new devtools::tracing::TracingHandler( |
33 devtools::tracing::TracingHandler::Browser, GetIOContext())), | 33 devtools::tracing::TracingHandler::Browser, |
34 protocol_handler_(new DevToolsProtocolHandler( | 34 GetIOContext())), |
dgozman
2015/11/07 02:28:40
Do not touch unnecessary lines.
kozy
2015/11/07 03:02:35
Done.
| |
35 this, | 35 protocol_handler_(new DevToolsProtocolHandler(this, this)) { |
36 base::Bind(&BrowserDevToolsAgentHost::SendMessageToClient, | |
37 base::Unretained(this)))) { | |
38 DevToolsProtocolDispatcher* dispatcher = protocol_handler_->dispatcher(); | 36 DevToolsProtocolDispatcher* dispatcher = protocol_handler_->dispatcher(); |
39 dispatcher->SetIOHandler(io_handler_.get()); | 37 dispatcher->SetIOHandler(io_handler_.get()); |
40 dispatcher->SetMemoryHandler(memory_handler_.get()); | 38 dispatcher->SetMemoryHandler(memory_handler_.get()); |
41 dispatcher->SetSystemInfoHandler(system_info_handler_.get()); | 39 dispatcher->SetSystemInfoHandler(system_info_handler_.get()); |
42 dispatcher->SetTetheringHandler(tethering_handler_.get()); | 40 dispatcher->SetTetheringHandler(tethering_handler_.get()); |
43 dispatcher->SetTracingHandler(tracing_handler_.get()); | 41 dispatcher->SetTracingHandler(tracing_handler_.get()); |
44 } | 42 } |
45 | 43 |
46 BrowserDevToolsAgentHost::~BrowserDevToolsAgentHost() { | 44 BrowserDevToolsAgentHost::~BrowserDevToolsAgentHost() { |
47 } | 45 } |
(...skipping 19 matching lines...) Expand all Loading... | |
67 bool BrowserDevToolsAgentHost::Activate() { | 65 bool BrowserDevToolsAgentHost::Activate() { |
68 return false; | 66 return false; |
69 } | 67 } |
70 | 68 |
71 bool BrowserDevToolsAgentHost::Close() { | 69 bool BrowserDevToolsAgentHost::Close() { |
72 return false; | 70 return false; |
73 } | 71 } |
74 | 72 |
75 bool BrowserDevToolsAgentHost::DispatchProtocolMessage( | 73 bool BrowserDevToolsAgentHost::DispatchProtocolMessage( |
76 const std::string& message) { | 74 const std::string& message) { |
77 protocol_handler_->HandleMessage(message); | 75 protocol_handler_->HandleMessage(session_id(), message); |
78 return true; | 76 return true; |
79 } | 77 } |
80 | 78 |
81 } // content | 79 } // content |
OLD | NEW |