| 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 ddd2917e4b57133908eb12c278c25b6c912389ca..fa966c4c658d7d0a6c77e7fffcb359c1f5c7393c 100644
|
| --- a/content/browser/devtools/devtools_agent_host_impl.h
|
| +++ b/content/browser/devtools/devtools_agent_host_impl.h
|
| @@ -45,7 +45,7 @@ class CONTENT_EXPORT DevToolsAgentHostImpl : public DevToolsAgentHost,
|
| const std::string& message) override;
|
|
|
| bool IsAttached() override;
|
| - void InspectElement(int x, int y) override;
|
| + void InspectElement(DevToolsAgentHostClient* client, int x, int y) override;
|
| std::string GetId() override;
|
| BrowserContext* GetBrowserContext() override;
|
| WebContents* GetWebContents() override;
|
| @@ -62,6 +62,7 @@ class CONTENT_EXPORT DevToolsAgentHostImpl : public DevToolsAgentHost,
|
| ~DevToolsAgentHostImpl() override;
|
|
|
| virtual bool DispatchProtocolMessage(const std::string& message) = 0;
|
| + virtual void InspectElement(int x, int y);
|
|
|
| void HostClosed();
|
| void SendMessageToClient(int session_id, const std::string& message);
|
|
|