OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_DEVTOOLS_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_ |
6 #define CONTENT_BROWSER_DEVTOOLS_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_ | 6 #define CONTENT_BROWSER_DEVTOOLS_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "content/browser/devtools/devtools_agent_host_impl.h" | 13 #include "content/browser/devtools/devtools_agent_host_impl.h" |
| 14 #include "content/browser/devtools/devtools_protocol.h" |
14 #include "content/common/content_export.h" | 15 #include "content/common/content_export.h" |
15 #include "content/public/browser/render_view_host_observer.h" | 16 #include "content/public/browser/render_view_host_observer.h" |
16 #include "content/public/browser/web_contents_observer.h" | 17 #include "content/public/browser/web_contents_observer.h" |
17 | 18 |
18 namespace content { | 19 namespace content { |
19 | 20 |
| 21 class DevToolsAgentHostRvhObserver; |
20 class RenderViewHost; | 22 class RenderViewHost; |
21 | 23 |
22 class DevToolsAgentHostRvhObserver; | |
23 | |
24 class CONTENT_EXPORT RenderViewDevToolsAgentHost | 24 class CONTENT_EXPORT RenderViewDevToolsAgentHost |
25 : public DevToolsAgentHostImpl, | 25 : public DevToolsAgentHostImpl, |
26 private WebContentsObserver { | 26 private WebContentsObserver { |
27 public: | 27 public: |
28 static void OnCancelPendingNavigation(RenderViewHost* pending, | 28 static void OnCancelPendingNavigation(RenderViewHost* pending, |
29 RenderViewHost* current); | 29 RenderViewHost* current); |
30 | 30 |
31 RenderViewDevToolsAgentHost(RenderViewHost*); | 31 RenderViewDevToolsAgentHost(RenderViewHost*); |
32 | 32 |
33 RenderViewHost* render_view_host() { return render_view_host_; } | 33 RenderViewHost* render_view_host() { return render_view_host_; } |
34 | 34 |
35 private: | 35 private: |
36 friend class DevToolsAgentHost; | 36 friend class DevToolsAgentHost; |
37 friend class DevToolsAgentHostRvhObserver; | 37 friend class DevToolsAgentHostRvhObserver; |
38 | 38 |
39 virtual ~RenderViewDevToolsAgentHost(); | 39 virtual ~RenderViewDevToolsAgentHost(); |
40 | 40 |
41 // DevTooolsAgentHost overrides. | 41 // DevTooolsAgentHost overrides. |
42 virtual RenderViewHost* GetRenderViewHost() OVERRIDE; | 42 virtual RenderViewHost* GetRenderViewHost() OVERRIDE; |
43 | 43 |
| 44 // DevToolsAgentHostImpl overrides. |
| 45 virtual void DispatchOnInspectorBackend(const std::string& message) OVERRIDE; |
| 46 |
44 // DevToolsAgentHostImpl implementation. | 47 // DevToolsAgentHostImpl implementation. |
45 virtual void SendMessageToAgent(IPC::Message* msg) OVERRIDE; | 48 virtual void SendMessageToAgent(IPC::Message* msg) OVERRIDE; |
46 virtual void NotifyClientAttaching() OVERRIDE; | 49 virtual void NotifyClientAttaching() OVERRIDE; |
47 virtual void NotifyClientDetaching() OVERRIDE; | 50 virtual void NotifyClientDetaching() OVERRIDE; |
48 | 51 |
49 // WebContentsObserver overrides. | 52 // WebContentsObserver overrides. |
50 virtual void AboutToNavigateRenderView(RenderViewHost* dest_rvh) OVERRIDE; | 53 virtual void AboutToNavigateRenderView(RenderViewHost* dest_rvh) OVERRIDE; |
51 | 54 |
52 void ConnectRenderViewHost(RenderViewHost* rvh, bool reattach); | 55 void ConnectRenderViewHost(RenderViewHost* rvh, bool reattach); |
53 void DisconnectRenderViewHost(); | 56 void DisconnectRenderViewHost(); |
54 | 57 |
55 void RenderViewHostDestroyed(RenderViewHost* rvh); | 58 void RenderViewHostDestroyed(RenderViewHost* rvh); |
56 bool OnRvhMessageReceived(const IPC::Message& message); | 59 bool OnRvhMessageReceived(const IPC::Message& message); |
57 | 60 |
58 void OnDispatchOnInspectorFrontend(const std::string& message); | 61 void OnDispatchOnInspectorFrontend(const std::string& message); |
59 void OnSaveAgentRuntimeState(const std::string& state); | 62 void OnSaveAgentRuntimeState(const std::string& state); |
60 void OnClearBrowserCache(); | 63 void OnClearBrowserCache(); |
61 void OnClearBrowserCookies(); | 64 void OnClearBrowserCookies(); |
62 | 65 |
63 bool CaptureScreenshot(std::string* base_64_data); | 66 bool CaptureScreenshot(std::string* base_64_data); |
64 | 67 |
65 bool HandleJavaScriptDialog(bool accept); | 68 bool HandleJavaScriptDialog(bool accept); |
66 | 69 |
| 70 scoped_ptr<DevToolsProtocol::Response> GrantSetFileInputFilesPermissions( |
| 71 const DevToolsProtocol::Command& command); |
| 72 |
67 RenderViewHost* render_view_host_; | 73 RenderViewHost* render_view_host_; |
68 scoped_ptr<DevToolsAgentHostRvhObserver> rvh_observer_; | 74 scoped_ptr<DevToolsAgentHostRvhObserver> rvh_observer_; |
69 std::string state_; | 75 std::string state_; |
70 | 76 |
71 DISALLOW_COPY_AND_ASSIGN(RenderViewDevToolsAgentHost); | 77 DISALLOW_COPY_AND_ASSIGN(RenderViewDevToolsAgentHost); |
72 }; | 78 }; |
73 | 79 |
74 } // namespace content | 80 } // namespace content |
75 | 81 |
76 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_ | 82 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_VIEW_DEVTOOLS_AGENT_HOST_H_ |
OLD | NEW |