| Index: content/browser/devtools/forwarding_agent_host.cc
|
| diff --git a/content/browser/devtools/forwarding_agent_host.cc b/content/browser/devtools/forwarding_agent_host.cc
|
| index 5859034e8d5313c76e642a84fe0a72258cd09ed8..f87276fa0d92777403ca5404eb3f1d49ab8e1cee 100644
|
| --- a/content/browser/devtools/forwarding_agent_host.cc
|
| +++ b/content/browser/devtools/forwarding_agent_host.cc
|
| @@ -22,7 +22,8 @@ ForwardingAgentHost::~ForwardingAgentHost() {
|
| }
|
|
|
| void ForwardingAgentHost::DispatchOnClientHost(const std::string& message) {
|
| - SendMessageToClient(session() ? session()->session_id() : 0, message);
|
| + if (session())
|
| + session()->SendMessageToClient(message);
|
| }
|
|
|
| void ForwardingAgentHost::ConnectionClosed() {
|
|
|