Index: content/browser/devtools/devtools_agent_host_impl.h |
diff --git a/content/browser/devtools/devtools_agent_host_impl.h b/content/browser/devtools/devtools_agent_host_impl.h |
index c3a52155f91294dd70f9fa3cab7d31f258eeff58..322050549c26267bb6c39ffb7ca1ece07e6d6641 100644 |
--- a/content/browser/devtools/devtools_agent_host_impl.h |
+++ b/content/browser/devtools/devtools_agent_host_impl.h |
@@ -41,11 +41,19 @@ class CONTENT_EXPORT DevToolsAgentHostImpl : public DevToolsAgentHost { |
close_listener_ = listener; |
} |
- int id() { return id_; } |
- |
// DevToolsAgentHost implementation. |
+ virtual std::string id() OVERRIDE { return id_; } |
+ |
virtual RenderViewHost* GetRenderViewHost() OVERRIDE; |
+ virtual std::string title() OVERRIDE; |
+ |
+ virtual GURL url() OVERRIDE; |
+ |
+ virtual GURL thumbnail_url() OVERRIDE; |
+ |
+ virtual GURL favicon_url() OVERRIDE; |
+ |
protected: |
DevToolsAgentHostImpl(); |
virtual ~DevToolsAgentHostImpl() {} |
@@ -59,7 +67,7 @@ class CONTENT_EXPORT DevToolsAgentHostImpl : public DevToolsAgentHost { |
CloseListener* close_listener_; |
private: |
- int id_; |
+ const std::string id_; |
}; |
} // namespace content |