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..c7dcffc6412336b08f5344cbbeab18059902d0da 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); |
} |
+std::string ForwardingAgentHost::GetType() { |
+ return ""; |
dgozman
2014/08/21 11:50:24
You should return something meaningful.
vkuzkokov
2014/08/21 14:17:52
Done.
|
+} |
+ |
+std::string ForwardingAgentHost::GetTitle() { |
+ return ""; |
+} |
+ |
+GURL ForwardingAgentHost::GetURL() { |
+ return GURL(); |
+} |
+ |
+bool ForwardingAgentHost::Activate() { |
+ return false; |
+} |
+ |
+bool ForwardingAgentHost::Close() { |
+ return false; |
+} |
+ |
} // content |