| Index: content/browser/devtools/ipc_devtools_agent_host.cc
|
| diff --git a/content/browser/devtools/ipc_devtools_agent_host.cc b/content/browser/devtools/ipc_devtools_agent_host.cc
|
| index c7cd3c386f8309c65d467df13be51e56de348303..294a679c7f67046aef05f5a022c20d3632055626 100644
|
| --- a/content/browser/devtools/ipc_devtools_agent_host.cc
|
| +++ b/content/browser/devtools/ipc_devtools_agent_host.cc
|
| @@ -9,7 +9,7 @@
|
| namespace content {
|
|
|
| void IPCDevToolsAgentHost::Attach() {
|
| - SendMessageToAgent(new DevToolsAgentMsg_Attach(MSG_ROUTING_NONE));
|
| + SendMessageToAgent(new DevToolsAgentMsg_Attach(MSG_ROUTING_NONE, GetId()));
|
| OnClientAttached();
|
| }
|
|
|
| @@ -26,7 +26,7 @@ void IPCDevToolsAgentHost::DispatchOnInspectorBackend(
|
|
|
| void IPCDevToolsAgentHost::InspectElement(int x, int y) {
|
| SendMessageToAgent(new DevToolsAgentMsg_InspectElement(MSG_ROUTING_NONE,
|
| - x, y));
|
| + GetId(), x, y));
|
| }
|
|
|
| IPCDevToolsAgentHost::~IPCDevToolsAgentHost() {
|
| @@ -34,8 +34,7 @@ IPCDevToolsAgentHost::~IPCDevToolsAgentHost() {
|
|
|
| void IPCDevToolsAgentHost::Reattach(const std::string& saved_agent_state) {
|
| SendMessageToAgent(new DevToolsAgentMsg_Reattach(
|
| - MSG_ROUTING_NONE,
|
| - saved_agent_state));
|
| + MSG_ROUTING_NONE, GetId(), saved_agent_state));
|
| OnClientAttached();
|
| }
|
|
|
|
|