summaryrefslogtreecommitdiffstats
path: root/content/browser/devtools/forwarding_agent_host.cc
blob: db8af96a2b1f5df3a82b20eaade3dea4aaca62d9 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright 2014 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 "content/browser/devtools/forwarding_agent_host.h"

#include "base/bind.h"
#include "content/browser/devtools/protocol/inspector_handler.h"

namespace content {

ForwardingAgentHost::ForwardingAgentHost(
    DevToolsExternalAgentProxyDelegate* delegate)
      : delegate_(delegate) {
}

ForwardingAgentHost::~ForwardingAgentHost() {
}

void ForwardingAgentHost::DispatchOnClientHost(const std::string& message) {
  SendMessageToClient(message);
}

void ForwardingAgentHost::ConnectionClosed() {
  devtools::inspector::Client inspector(
      base::Bind(&ForwardingAgentHost::DispatchOnClientHost,
                 base::Unretained(this)));
  inspector.Detached(devtools::inspector::DetachedParams::Create()
      ->set_reason("Connection lost."));
  delegate_.reset();
}

void ForwardingAgentHost::Attach() {
  if (delegate_)
    delegate_->Attach(this);
}

void ForwardingAgentHost::Detach() {
  if (delegate_)
    delegate_->Detach();
}

void ForwardingAgentHost::DispatchProtocolMessage(
    const std::string& message) {
  if (delegate_)
    delegate_->SendMessageToBackend(message);
}

DevToolsAgentHost::Type ForwardingAgentHost::GetType() {
  return TYPE_EXTERNAL;
}

std::string ForwardingAgentHost::GetTitle() {
  return "";
}

GURL ForwardingAgentHost::GetURL() {
  return GURL();
}

bool ForwardingAgentHost::Activate() {
  return false;
}

bool ForwardingAgentHost::Close() {
  return false;
}

}  // content