| Index: content/browser/devtools/forwarding_agent_host.cc
|
| diff --git a/content/browser/devtools/forwarding_agent_host.cc b/content/browser/devtools/forwarding_agent_host.cc
|
| index 599cf2ea038d6a67fb320898feda885e3f8c20f9..2166755d8c053fa469abf5663eb4d5c42b9dafd1 100644
|
| --- a/content/browser/devtools/forwarding_agent_host.cc
|
| +++ b/content/browser/devtools/forwarding_agent_host.cc
|
| @@ -10,9 +10,10 @@
|
| namespace content {
|
|
|
| ForwardingAgentHost::ForwardingAgentHost(
|
| - DevToolsExternalAgentProxyDelegate* delegate)
|
| - : DevToolsAgentHostImpl(delegate->GetId()),
|
| - delegate_(delegate) {
|
| + const std::string& id,
|
| + std::unique_ptr<DevToolsExternalAgentProxyDelegate> delegate)
|
| + : DevToolsAgentHostImpl(id),
|
| + delegate_(std::move(delegate)) {
|
| }
|
|
|
| ForwardingAgentHost::~ForwardingAgentHost() {
|
|
|