| Index: content/browser/devtools/forwarding_agent_host.h
|
| diff --git a/content/browser/devtools/forwarding_agent_host.h b/content/browser/devtools/forwarding_agent_host.h
|
| index dc8c4269035c4760f45bd2fcec6f09e656821069..1ef785009840bdec0ff488f7b75ba6a32aa3def4 100644
|
| --- a/content/browser/devtools/forwarding_agent_host.h
|
| +++ b/content/browser/devtools/forwarding_agent_host.h
|
| @@ -33,13 +33,19 @@ class ForwardingAgentHost
|
| bool DispatchProtocolMessage(const std::string& message) override;
|
|
|
| // DevToolsAgentHost implementation
|
| - Type GetType() override;
|
| + std::string GetType() override;
|
| std::string GetTitle() override;
|
| GURL GetURL() override;
|
| + GURL GetFaviconURL() override;
|
| bool Activate() override;
|
| + bool Inspect() override;
|
| + void Reload() override;
|
| bool Close() override;
|
|
|
| std::unique_ptr<DevToolsExternalAgentProxyDelegate> delegate_;
|
| + std::string type_;
|
| + std::string title_;
|
| + GURL url_;
|
| };
|
|
|
| } // namespace content
|
|
|