| Index: content/browser/devtools/render_view_devtools_agent_host.h
|
| diff --git a/content/browser/devtools/render_view_devtools_agent_host.h b/content/browser/devtools/render_view_devtools_agent_host.h
|
| index 685158817e013974ff911567887775725dd55662..87cf8be4226527dc43bd107cb29db8ac2453d3dd 100644
|
| --- a/content/browser/devtools/render_view_devtools_agent_host.h
|
| +++ b/content/browser/devtools/render_view_devtools_agent_host.h
|
| @@ -11,15 +11,15 @@
|
| #include "base/compiler_specific.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "content/browser/devtools/devtools_agent_host_impl.h"
|
| +#include "content/browser/devtools/devtools_protocol.h"
|
| #include "content/common/content_export.h"
|
| #include "content/public/browser/render_view_host_observer.h"
|
| #include "content/public/browser/web_contents_observer.h"
|
|
|
| namespace content {
|
|
|
| -class RenderViewHost;
|
| -
|
| class DevToolsAgentHostRvhObserver;
|
| +class RenderViewHost;
|
|
|
| class CONTENT_EXPORT RenderViewDevToolsAgentHost
|
| : public DevToolsAgentHostImpl,
|
| @@ -41,6 +41,9 @@ class CONTENT_EXPORT RenderViewDevToolsAgentHost
|
| // DevTooolsAgentHost overrides.
|
| virtual RenderViewHost* GetRenderViewHost() OVERRIDE;
|
|
|
| + // DevToolsAgentHostImpl overrides.
|
| + virtual void DispatchOnInspectorBackend(const std::string& message) OVERRIDE;
|
| +
|
| // DevToolsAgentHostImpl implementation.
|
| virtual void SendMessageToAgent(IPC::Message* msg) OVERRIDE;
|
| virtual void NotifyClientAttaching() OVERRIDE;
|
| @@ -64,6 +67,9 @@ class CONTENT_EXPORT RenderViewDevToolsAgentHost
|
|
|
| bool HandleJavaScriptDialog(bool accept);
|
|
|
| + scoped_ptr<DevToolsProtocol::Response> GrantSetFileInputFilesPermissions(
|
| + const DevToolsProtocol::Command& command);
|
| +
|
| RenderViewHost* render_view_host_;
|
| scoped_ptr<DevToolsAgentHostRvhObserver> rvh_observer_;
|
| std::string state_;
|
|
|