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 f1524e1b7e1d9798c1b0dbf4f40899d768c04c4a..0c88556e36438530d89dff8b4af589a58a7bd462 100644 |
--- a/content/browser/devtools/forwarding_agent_host.cc |
+++ b/content/browser/devtools/forwarding_agent_host.cc |
@@ -38,4 +38,24 @@ void ForwardingAgentHost::DispatchOnInspectorBackend( |
delegate_->SendMessageToBackend(message); |
} |
+std::string ForwardingAgentHost::GetType() { |
+ return ""; |
+} |
+ |
+std::string ForwardingAgentHost::GetTitle() { |
+ return ""; |
+} |
+ |
+GURL ForwardingAgentHost::GetURL() { |
+ return GURL(); |
+} |
+ |
+bool ForwardingAgentHost::Activate() { |
+ return false; |
+} |
+ |
+bool ForwardingAgentHost::Close() { |
+ return false; |
+} |
+ |
} // content |