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" | 7 #include "content/browser/devtools/devtools_manager_impl.h" |
8 | 8 |
9 namespace content { | 9 namespace content { |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... |
31 | 31 |
32 void ForwardingAgentHost::Detach() { | 32 void ForwardingAgentHost::Detach() { |
33 delegate_->Detach(); | 33 delegate_->Detach(); |
34 } | 34 } |
35 | 35 |
36 void ForwardingAgentHost::DispatchOnInspectorBackend( | 36 void ForwardingAgentHost::DispatchOnInspectorBackend( |
37 const std::string& message) { | 37 const std::string& message) { |
38 delegate_->SendMessageToBackend(message); | 38 delegate_->SendMessageToBackend(message); |
39 } | 39 } |
40 | 40 |
| 41 std::string ForwardingAgentHost::GetType() { |
| 42 return ""; |
| 43 } |
| 44 |
| 45 std::string ForwardingAgentHost::GetTitle() { |
| 46 return ""; |
| 47 } |
| 48 |
| 49 GURL ForwardingAgentHost::GetURL() { |
| 50 return GURL(); |
| 51 } |
| 52 |
| 53 bool ForwardingAgentHost::Activate() { |
| 54 return false; |
| 55 } |
| 56 |
| 57 bool ForwardingAgentHost::Close() { |
| 58 return false; |
| 59 } |
| 60 |
41 } // content | 61 } // content |
OLD | NEW |