| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_DEVTOOLS_DEVTOOLS_EMBEDDER_MESSAGE_DISPATCHER_H_ | 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_EMBEDDER_MESSAGE_DISPATCHER_H_ |
| 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_EMBEDDER_MESSAGE_DISPATCHER_H_ | 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_EMBEDDER_MESSAGE_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 virtual void SetWhitelistedShortcuts(const std::string& message) = 0; | 64 virtual void SetWhitelistedShortcuts(const std::string& message) = 0; |
| 65 virtual void ZoomIn() = 0; | 65 virtual void ZoomIn() = 0; |
| 66 virtual void ZoomOut() = 0; | 66 virtual void ZoomOut() = 0; |
| 67 virtual void ResetZoom() = 0; | 67 virtual void ResetZoom() = 0; |
| 68 virtual void OpenUrlOnRemoteDeviceAndInspect(const std::string& browser_id, | 68 virtual void OpenUrlOnRemoteDeviceAndInspect(const std::string& browser_id, |
| 69 const std::string& url) = 0; | 69 const std::string& url) = 0; |
| 70 virtual void SetDeviceCountUpdatesEnabled(bool enabled) = 0; | 70 virtual void SetDeviceCountUpdatesEnabled(bool enabled) = 0; |
| 71 virtual void SetDevicesUpdatesEnabled(bool enabled) = 0; | 71 virtual void SetDevicesUpdatesEnabled(bool enabled) = 0; |
| 72 virtual void SendMessageToBrowser(const std::string& message) = 0; | 72 virtual void SendMessageToBrowser(const std::string& message) = 0; |
| 73 virtual void RecordActionUMA(const std::string& name, int action) = 0; | 73 virtual void RecordActionUMA(const std::string& name, int action) = 0; |
| 74 virtual void SendJsonRequest(const DispatchCallback& callback, |
| 75 const std::string& browser_id, |
| 76 const std::string& url) = 0; |
| 74 }; | 77 }; |
| 75 | 78 |
| 76 using DispatchCallback = Delegate::DispatchCallback; | 79 using DispatchCallback = Delegate::DispatchCallback; |
| 77 | 80 |
| 78 virtual ~DevToolsEmbedderMessageDispatcher() {} | 81 virtual ~DevToolsEmbedderMessageDispatcher() {} |
| 79 virtual bool Dispatch(const DispatchCallback& callback, | 82 virtual bool Dispatch(const DispatchCallback& callback, |
| 80 const std::string& method, | 83 const std::string& method, |
| 81 const base::ListValue* params) = 0; | 84 const base::ListValue* params) = 0; |
| 82 | 85 |
| 83 static DevToolsEmbedderMessageDispatcher* CreateForDevToolsFrontend( | 86 static DevToolsEmbedderMessageDispatcher* CreateForDevToolsFrontend( |
| 84 Delegate* delegate); | 87 Delegate* delegate); |
| 85 }; | 88 }; |
| 86 | 89 |
| 87 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_EMBEDDER_MESSAGE_DISPATCHER_H_ | 90 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_EMBEDDER_MESSAGE_DISPATCHER_H_ |
| OLD | NEW |