OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/browser/devtools/forwarding_agent_host.h" | 5 #include "content/browser/devtools/forwarding_agent_host.h" |
6 | 6 |
7 #include "content/browser/devtools/devtools_manager_impl.h" | |
8 | |
9 namespace content { | 7 namespace content { |
10 | 8 |
11 ForwardingAgentHost::ForwardingAgentHost( | 9 ForwardingAgentHost::ForwardingAgentHost( |
12 DevToolsExternalAgentProxyDelegate* delegate) | 10 DevToolsExternalAgentProxyDelegate* delegate) |
13 : delegate_(delegate) { | 11 : delegate_(delegate) { |
14 } | 12 } |
15 | 13 |
16 ForwardingAgentHost::~ForwardingAgentHost() { | 14 ForwardingAgentHost::~ForwardingAgentHost() { |
17 } | 15 } |
18 | 16 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 49 |
52 bool ForwardingAgentHost::Activate() { | 50 bool ForwardingAgentHost::Activate() { |
53 return false; | 51 return false; |
54 } | 52 } |
55 | 53 |
56 bool ForwardingAgentHost::Close() { | 54 bool ForwardingAgentHost::Close() { |
57 return false; | 55 return false; |
58 } | 56 } |
59 | 57 |
60 } // content | 58 } // content |
OLD | NEW |