| 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 905d5d8d63ad14978ac6df32fc312482f9af0cf6..b8b8c2f826b1ed8d61de5688148736f51497486b 100644
|
| --- a/content/browser/devtools/forwarding_agent_host.cc
|
| +++ b/content/browser/devtools/forwarding_agent_host.cc
|
| @@ -39,36 +39,24 @@
|
| return true;
|
| }
|
|
|
| -std::string ForwardingAgentHost::GetType() {
|
| - return delegate_->GetType();
|
| +DevToolsAgentHost::Type ForwardingAgentHost::GetType() {
|
| + return TYPE_EXTERNAL;
|
| }
|
|
|
| std::string ForwardingAgentHost::GetTitle() {
|
| - return delegate_->GetTitle();
|
| + return "";
|
| }
|
|
|
| GURL ForwardingAgentHost::GetURL() {
|
| - return delegate_->GetURL();
|
| -}
|
| -
|
| -GURL ForwardingAgentHost::GetFaviconURL() {
|
| - return delegate_->GetFaviconURL();
|
| + return GURL();
|
| }
|
|
|
| bool ForwardingAgentHost::Activate() {
|
| - return delegate_->Activate();
|
| -}
|
| -
|
| -bool ForwardingAgentHost::Inspect() {
|
| - return delegate_->Inspect();
|
| -}
|
| -
|
| -void ForwardingAgentHost::Reload() {
|
| - delegate_->Reload();
|
| + return false;
|
| }
|
|
|
| bool ForwardingAgentHost::Close() {
|
| - return delegate_->Close();
|
| + return false;
|
| }
|
|
|
| } // content
|
|
|