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

Unified Diff: content/child/shared_worker_devtools_agent.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 | « content/child/shared_worker_devtools_agent.h ('k') | content/common/devtools_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/shared_worker_devtools_agent.cc
diff --git a/content/child/shared_worker_devtools_agent.cc b/content/child/shared_worker_devtools_agent.cc
index eac5865881d986553059d35a248cf63e73a66cae..89ddbd8c49eac03ab0fe573d76581d3ad6ea1a3a 100644
--- a/content/child/shared_worker_devtools_agent.cc
+++ b/content/child/shared_worker_devtools_agent.cc
@@ -91,8 +91,8 @@ void SharedWorkerDevToolsAgent::OnReattach(const std::string& host_id,
WebString::FromUTF8(state));
}
-void SharedWorkerDevToolsAgent::OnDetach() {
- webworker_->DetachDevTools();
+void SharedWorkerDevToolsAgent::OnDetach(int session_id) {
+ webworker_->DetachDevTools(session_id);
}
void SharedWorkerDevToolsAgent::OnDispatchOnInspectorBackend(
« no previous file with comments | « content/child/shared_worker_devtools_agent.h ('k') | content/common/devtools_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698