summaryrefslogtreecommitdiffstats
path: root/content/browser/devtools/forwarding_agent_host.h
blob: 81e4aed541967b244341c2080c65b587ccf6936c (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
// 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.

#ifndef CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H
#define CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H

#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "content/browser/devtools/devtools_agent_host_impl.h"
#include "content/public/browser/devtools_external_agent_proxy.h"
#include "content/public/browser/devtools_external_agent_proxy_delegate.h"

namespace content {

class ForwardingAgentHost
    : public DevToolsAgentHostImpl,
      public DevToolsExternalAgentProxy {
 public:
  ForwardingAgentHost(DevToolsExternalAgentProxyDelegate* delegate);

 private:
  virtual ~ForwardingAgentHost();

  // DevToolsExternalAgentProxy implementation.
  virtual void DispatchOnClientHost(const std::string& message) OVERRIDE;
  virtual void ConnectionClosed() OVERRIDE;

  // DevToolsAgentHostImpl implementation.
  virtual void Attach() OVERRIDE;
  virtual void Detach() OVERRIDE;
  virtual void DispatchOnInspectorBackend(const std::string& message) OVERRIDE;

  scoped_ptr<DevToolsExternalAgentProxyDelegate> delegate_;
};

}  // namespace content

#endif  // CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H