blob: 30b2287216c30d9fdce7e1f02efb2e90b5a59145 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/devtools_service/devtools_agent_host.h"
namespace devtools_service {
DevToolsAgentHost::DevToolsAgentHost(const std::string& id,
DevToolsAgentPtr agent)
: id_(id), agent_(agent.Pass()), binding_(this), delegate_(nullptr) {}
DevToolsAgentHost::~DevToolsAgentHost() {
if (delegate_)
delegate_->OnAgentHostClosed(this);
}
void DevToolsAgentHost::SetDelegate(Delegate* delegate) {
delegate_ = delegate;
if (delegate_) {
if (binding_.is_bound())
return;
DevToolsAgentClientPtr client;
binding_.Bind(&client);
agent_->SetClient(client.Pass());
} else {
if (!binding_.is_bound())
return;
binding_.Close();
}
}
void DevToolsAgentHost::SendProtocolMessageToAgent(const std::string& message) {
agent_->DispatchProtocolMessage(message);
}
void DevToolsAgentHost::DispatchProtocolMessage(int32_t call_id,
const mojo::String& message,
const mojo::String& state) {
delegate_->DispatchProtocolMessage(this, message);
}
} // namespace devtools_service
|