| Index: content/browser/devtools/forwarding_agent_host.cc
|
| diff --git a/content/browser/devtools/forwarding_agent_host.cc b/content/browser/devtools/forwarding_agent_host.cc
|
| index 5267ae1974f0b8675790fc222a6d74be44ad5466..323d5a4427e947eadeee0c92fb80b9a65a016176 100644
|
| --- a/content/browser/devtools/forwarding_agent_host.cc
|
| +++ b/content/browser/devtools/forwarding_agent_host.cc
|
| @@ -37,4 +37,24 @@ void ForwardingAgentHost::DispatchProtocolMessage(
|
| delegate_->SendMessageToBackend(message);
|
| }
|
|
|
| +DevToolsAgentHost::Type ForwardingAgentHost::GetType() {
|
| + return AGENT_HOST_EXTERNAL;
|
| +}
|
| +
|
| +std::string ForwardingAgentHost::GetTitle() {
|
| + return "";
|
| +}
|
| +
|
| +GURL ForwardingAgentHost::GetURL() {
|
| + return GURL();
|
| +}
|
| +
|
| +bool ForwardingAgentHost::Activate() {
|
| + return false;
|
| +}
|
| +
|
| +bool ForwardingAgentHost::Close() {
|
| + return false;
|
| +}
|
| +
|
| } // content
|
|
|