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

Unified Diff: content/browser/devtools/forwarding_agent_host.h

Issue 2590293003: [DevTools] Rework DevToolsSession interaction with domain handlers. (Closed)
Patch Set: Created 4 years 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
Index: content/browser/devtools/forwarding_agent_host.h
diff --git a/content/browser/devtools/forwarding_agent_host.h b/content/browser/devtools/forwarding_agent_host.h
index c14ddb736615906bfa7ba120f471fdc69766e31e..8cd8c55c3d7a3c70f34373d0622ec439eeb41ef0 100644
--- a/content/browser/devtools/forwarding_agent_host.h
+++ b/content/browser/devtools/forwarding_agent_host.h
@@ -30,9 +30,11 @@ class ForwardingAgentHost
void ConnectionClosed() override;
// DevToolsAgentHostImpl implementation.
- void Attach() override;
- void Detach() override;
- bool DispatchProtocolMessage(const std::string& message) override;
+ void Attach(DevToolsSession* session) override;
+ void Detach(DevToolsSession* session) override;
+ bool DispatchProtocolMessage(
+ DevToolsSession* session,
+ const std::string& message) override;
// DevToolsAgentHost implementation
std::string GetType() override;

Powered by Google App Engine
This is Rietveld 408576698