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

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

Issue 2864103002: [DevTools] Support multiple DevToolsMessageChunkProcessor instances (Closed)
Patch Set: fix 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/browser/devtools/devtools_agent_host_impl.h ('k') | content/browser/devtools/devtools_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/devtools/devtools_agent_host_impl.cc
diff --git a/content/browser/devtools/devtools_agent_host_impl.cc b/content/browser/devtools/devtools_agent_host_impl.cc
index e91af24df845b4aea8a500af1f107eb7bda96cb5..8684e11231424c008b2939a8b787c379c255fb42 100644
--- a/content/browser/devtools/devtools_agent_host_impl.cc
+++ b/content/browser/devtools/devtools_agent_host_impl.cc
@@ -274,14 +274,6 @@ void DevToolsAgentHostImpl::InspectElement(
int y) {
}
-void DevToolsAgentHostImpl::SendMessageToClient(int session_id,
- const std::string& message) {
- // Filter any messages from previous sessions.
- if (!session_ || session_id != session_->session_id())
- return;
- session_->client()->DispatchProtocolMessage(this, message);
-}
-
// static
void DevToolsAgentHost::DetachAllClients() {
if (g_instances == NULL)
« no previous file with comments | « content/browser/devtools/devtools_agent_host_impl.h ('k') | content/browser/devtools/devtools_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698