| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_SHELL_BROWSER_SHELL_DEVTOOLS_FRONTEND_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_DEVTOOLS_BINDINGS_H_ |
| 6 #define CONTENT_SHELL_BROWSER_SHELL_DEVTOOLS_FRONTEND_H_ | 6 #define CONTENT_SHELL_BROWSER_SHELL_DEVTOOLS_BINDINGS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/values.h" | 14 #include "base/values.h" |
| 15 #include "content/public/browser/devtools_agent_host.h" | 15 #include "content/public/browser/devtools_agent_host.h" |
| 16 #include "content/public/browser/devtools_frontend_host.h" | 16 #include "content/public/browser/devtools_frontend_host.h" |
| 17 #include "content/public/browser/web_contents_observer.h" | 17 #include "content/public/browser/web_contents_observer.h" |
| 18 #include "net/url_request/url_fetcher_delegate.h" | 18 #include "net/url_request/url_fetcher_delegate.h" |
| 19 | 19 |
| 20 namespace base { | 20 namespace base { |
| 21 class Value; | 21 class Value; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace content { | 24 namespace content { |
| 25 | 25 |
| 26 class RenderViewHost; | 26 class RenderViewHost; |
| 27 class Shell; | |
| 28 class WebContents; | 27 class WebContents; |
| 29 | 28 |
| 30 class ShellDevToolsFrontend : public WebContentsObserver, | 29 class ShellDevToolsBindings : public WebContentsObserver, |
| 31 public DevToolsAgentHostClient, | 30 public DevToolsAgentHostClient, |
| 32 public net::URLFetcherDelegate { | 31 public net::URLFetcherDelegate { |
| 33 public: | 32 public: |
| 34 static ShellDevToolsFrontend* Show(WebContents* inspected_contents); | 33 ShellDevToolsBindings(WebContents* devtools_contents, |
| 34 WebContents* inspected_contents); |
| 35 | 35 |
| 36 void Activate(); | 36 void Activate(); |
| 37 void Focus(); | 37 void Focus(); |
| 38 void InspectElementAt(int x, int y); | 38 void InspectElementAt(int x, int y); |
| 39 void Close(); | |
| 40 | 39 |
| 41 void DisconnectFromTarget(); | 40 void DisconnectFromTarget(); |
| 42 | 41 |
| 43 Shell* frontend_shell() const { return frontend_shell_; } | 42 WebContents* devtools_contents() const { return devtools_contents_; } |
| 43 WebContents* inspected_contents() const { return inspected_contents_; } |
| 44 | 44 |
| 45 void CallClientFunction(const std::string& function_name, | 45 void CallClientFunction(const std::string& function_name, |
| 46 const base::Value* arg1, | 46 const base::Value* arg1, |
| 47 const base::Value* arg2, | 47 const base::Value* arg2, |
| 48 const base::Value* arg3); | 48 const base::Value* arg3); |
| 49 void SetPreferences(const std::string& json); |
| 50 |
| 51 ~ShellDevToolsBindings() override; |
| 49 | 52 |
| 50 protected: | 53 protected: |
| 51 ShellDevToolsFrontend(Shell* frontend_shell, WebContents* inspected_contents); | |
| 52 ~ShellDevToolsFrontend() override; | |
| 53 | |
| 54 // content::DevToolsAgentHostClient implementation. | 54 // content::DevToolsAgentHostClient implementation. |
| 55 void AgentHostClosed(DevToolsAgentHost* agent_host, bool replaced) override; | 55 void AgentHostClosed(DevToolsAgentHost* agent_host, bool replaced) override; |
| 56 void DispatchProtocolMessage(DevToolsAgentHost* agent_host, | 56 void DispatchProtocolMessage(DevToolsAgentHost* agent_host, |
| 57 const std::string& message) override; | 57 const std::string& message) override; |
| 58 void SetPreferences(const std::string& json); | 58 |
| 59 virtual void HandleMessageFromDevToolsFrontend(const std::string& message); | 59 virtual void HandleMessageFromDevToolsFrontend(const std::string& message); |
| 60 | 60 |
| 61 void SendMessageAck(int request_id, const base::Value* arg1); |
| 62 |
| 61 private: | 63 private: |
| 62 // WebContentsObserver overrides | 64 // WebContentsObserver overrides |
| 63 void RenderViewCreated(RenderViewHost* render_view_host) override; | 65 void RenderViewCreated(RenderViewHost* render_view_host) override; |
| 64 void DocumentAvailableInMainFrame() override; | 66 void DocumentAvailableInMainFrame() override; |
| 65 void WebContentsDestroyed() override; | 67 void WebContentsDestroyed() override; |
| 66 | 68 |
| 67 // net::URLFetcherDelegate overrides. | 69 // net::URLFetcherDelegate overrides. |
| 68 void OnURLFetchComplete(const net::URLFetcher* source) override; | 70 void OnURLFetchComplete(const net::URLFetcher* source) override; |
| 69 | 71 |
| 70 void SendMessageAck(int request_id, | 72 WebContents* devtools_contents_; |
| 71 const base::Value* arg1); | |
| 72 | |
| 73 Shell* frontend_shell_; | |
| 74 WebContents* inspected_contents_; | 73 WebContents* inspected_contents_; |
| 75 scoped_refptr<DevToolsAgentHost> agent_host_; | 74 scoped_refptr<DevToolsAgentHost> agent_host_; |
| 76 int inspect_element_at_x_; | 75 int inspect_element_at_x_; |
| 77 int inspect_element_at_y_; | 76 int inspect_element_at_y_; |
| 78 std::unique_ptr<DevToolsFrontendHost> frontend_host_; | 77 std::unique_ptr<DevToolsFrontendHost> frontend_host_; |
| 79 using PendingRequestsMap = std::map<const net::URLFetcher*, int>; | 78 using PendingRequestsMap = std::map<const net::URLFetcher*, int>; |
| 80 PendingRequestsMap pending_requests_; | 79 PendingRequestsMap pending_requests_; |
| 81 base::DictionaryValue preferences_; | 80 base::DictionaryValue preferences_; |
| 82 base::WeakPtrFactory<ShellDevToolsFrontend> weak_factory_; | 81 base::WeakPtrFactory<ShellDevToolsBindings> weak_factory_; |
| 83 | 82 |
| 84 DISALLOW_COPY_AND_ASSIGN(ShellDevToolsFrontend); | 83 DISALLOW_COPY_AND_ASSIGN(ShellDevToolsBindings); |
| 85 }; | 84 }; |
| 86 | 85 |
| 87 } // namespace content | 86 } // namespace content |
| 88 | 87 |
| 89 #endif // CONTENT_SHELL_BROWSER_SHELL_DEVTOOLS_FRONTEND_H_ | 88 #endif // CONTENT_SHELL_BROWSER_SHELL_DEVTOOLS_BINDINGS_H_ |
| OLD | NEW |