| 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_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_MESSAGES_H_ |
| 7 |
| 5 // Multiply-included message header, no traditional include guard. | 8 // Multiply-included message header, no traditional include guard. |
| 6 | 9 |
| 7 #include <string> | 10 #include <string> |
| 8 | 11 |
| 9 #include "base/process/process.h" | 12 #include "base/process/process.h" |
| 10 #include "cc/surfaces/surface.h" | 13 #include "cc/surfaces/surface.h" |
| 11 #include "components/viz/common/surfaces/surface_info.h" | 14 #include "components/viz/common/surfaces/surface_info.h" |
| 12 #include "content/common/content_export.h" | 15 #include "content/common/content_export.h" |
| 13 #include "content/common/content_param_traits.h" | 16 #include "content/common/content_param_traits.h" |
| 14 #include "content/common/cursors/webcursor.h" | 17 #include "content/common/cursors/webcursor.h" |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 | 204 |
| 202 // Forwards a PointerLock Unlock request to the BrowserPlugin. | 205 // Forwards a PointerLock Unlock request to the BrowserPlugin. |
| 203 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetMouseLock, | 206 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetMouseLock, |
| 204 int /* browser_plugin_instance_id */, | 207 int /* browser_plugin_instance_id */, |
| 205 bool /* enable */) | 208 bool /* enable */) |
| 206 | 209 |
| 207 // Sends text to be displayed in tooltip. | 210 // Sends text to be displayed in tooltip. |
| 208 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetTooltipText, | 211 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetTooltipText, |
| 209 int /* browser_plugin_instance_id */, | 212 int /* browser_plugin_instance_id */, |
| 210 base::string16 /* tooltip_text */) | 213 base::string16 /* tooltip_text */) |
| 214 |
| 215 #endif // CONTENT_COMMON_BROWSER_PLUGIN_BROWSER_PLUGIN_MESSAGES_H_ |
| OLD | NEW |