Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Unified Diff: content/browser/devtools/render_frame_devtools_agent_host.cc

Issue 2858043003: [DevTools] Pass session id in detach request (Closed)
Patch Set: test compile Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/devtools/worker_devtools_agent_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/devtools/render_frame_devtools_agent_host.cc
diff --git a/content/browser/devtools/render_frame_devtools_agent_host.cc b/content/browser/devtools/render_frame_devtools_agent_host.cc
index 1a6be758941cbf54069fae1b0f0be90c8bf61527..6b5fc43bbbb29ec8f68b9277ac90999d641785b4 100644
--- a/content/browser/devtools/render_frame_devtools_agent_host.cc
+++ b/content/browser/devtools/render_frame_devtools_agent_host.cc
@@ -196,7 +196,7 @@ void RenderFrameDevToolsAgentHost::FrameHostHolder::Reattach(
}
void RenderFrameDevToolsAgentHost::FrameHostHolder::Detach(int session_id) {
- host_->Send(new DevToolsAgentMsg_Detach(host_->GetRoutingID()));
+ host_->Send(new DevToolsAgentMsg_Detach(host_->GetRoutingID(), session_id));
RevokePolicy();
attached_ = false;
}
« no previous file with comments | « no previous file | content/browser/devtools/worker_devtools_agent_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698