| 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..a67657d625cc71f059377b0b25ccbc4b17678d57 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;
|
| + void Inspect() override;
|
| + void Reload() override;
|
| bool Close() override;
|
|
|
| std::unique_ptr<DevToolsExternalAgentProxyDelegate> delegate_;
|
| + std::string type_;
|
| + std::string title_;
|
| + GURL url_;
|
| };
|
|
|
| } // namespace content
|
|
|