| 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 f49e8a07fe4ccb1e63371cbbbc25bfbc5991c702..694590acf1ca25f11a55bbd001ec67eba4c8c15f 100644
|
| --- a/content/browser/devtools/devtools_agent_host_impl.h
|
| +++ b/content/browser/devtools/devtools_agent_host_impl.h
|
| @@ -38,19 +38,19 @@ class CONTENT_EXPORT DevToolsAgentHostImpl : public DevToolsAgentHost {
|
| void Inspect(BrowserContext* browser_context);
|
|
|
| // DevToolsAgentHost implementation.
|
| - virtual void AttachClient(DevToolsAgentHostClient* client) override;
|
| - virtual void DetachClient() override;
|
| - virtual bool IsAttached() override;
|
| - virtual void InspectElement(int x, int y) override;
|
| - virtual std::string GetId() override;
|
| - virtual WebContents* GetWebContents() override;
|
| - virtual void DisconnectWebContents() override;
|
| - virtual void ConnectWebContents(WebContents* wc) override;
|
| - virtual bool IsWorker() const override;
|
| + void AttachClient(DevToolsAgentHostClient* client) override;
|
| + void DetachClient() override;
|
| + bool IsAttached() override;
|
| + void InspectElement(int x, int y) override;
|
| + std::string GetId() override;
|
| + WebContents* GetWebContents() override;
|
| + void DisconnectWebContents() override;
|
| + void ConnectWebContents(WebContents* wc) override;
|
| + bool IsWorker() const override;
|
|
|
| protected:
|
| DevToolsAgentHostImpl();
|
| - virtual ~DevToolsAgentHostImpl();
|
| + ~DevToolsAgentHostImpl() override;
|
|
|
| void HostClosed();
|
| void SendMessageToClient(const std::string& message);
|
|
|