Make USB permissions work in the new permission message system
[chromium-blink-merge.git] / content / browser / devtools / forwarding_agent_host.h
blob2b6ccce3050dcca8df5955fe9bbdc71d333b7d5e
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_
6 #define CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_
8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "content/browser/devtools/devtools_agent_host_impl.h"
11 #include "content/public/browser/devtools_external_agent_proxy.h"
12 #include "content/public/browser/devtools_external_agent_proxy_delegate.h"
14 namespace content {
16 class ForwardingAgentHost
17 : public DevToolsAgentHostImpl,
18 public DevToolsExternalAgentProxy {
19 public:
20 ForwardingAgentHost(DevToolsExternalAgentProxyDelegate* delegate);
22 private:
23 ~ForwardingAgentHost() override;
25 // DevToolsExternalAgentProxy implementation.
26 void DispatchOnClientHost(const std::string& message) override;
27 void ConnectionClosed() override;
29 // DevToolsAgentHostImpl implementation.
30 void Attach() override;
31 void Detach() override;
32 bool DispatchProtocolMessage(const std::string& message) override;
34 // DevToolsAgentHost implementation
35 Type GetType() override;
36 std::string GetTitle() override;
37 GURL GetURL() override;
38 bool Activate() override;
39 bool Close() override;
41 scoped_ptr<DevToolsExternalAgentProxyDelegate> delegate_;
44 } // namespace content
46 #endif // CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_