| 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..7f46fd4d2570cdce6e693e76f1db28cfa5e1cc23 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 TYPE_EXTERNAL;
|
| +}
|
| +
|
| +std::string ForwardingAgentHost::GetTitle() {
|
| + return "";
|
| +}
|
| +
|
| +GURL ForwardingAgentHost::GetURL() {
|
| + return GURL();
|
| +}
|
| +
|
| +bool ForwardingAgentHost::Activate() {
|
| + return false;
|
| +}
|
| +
|
| +bool ForwardingAgentHost::Close() {
|
| + return false;
|
| +}
|
| +
|
| } // content
|
|
|