| 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 // Multiply-included message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/process/process.h" | 9 #include "base/process/process.h" |
| 10 #include "cc/surfaces/surface.h" | 10 #include "cc/surfaces/surface.h" |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 IPC_MESSAGE_CONTROL5( | 82 IPC_MESSAGE_CONTROL5( |
| 83 BrowserPluginHostMsg_ImeCommitText, | 83 BrowserPluginHostMsg_ImeCommitText, |
| 84 int /* browser_plugin_instance_id */, | 84 int /* browser_plugin_instance_id */, |
| 85 base::string16 /* text */, | 85 base::string16 /* text */, |
| 86 std::vector<blink::WebCompositionUnderline> /* underlines */, | 86 std::vector<blink::WebCompositionUnderline> /* underlines */, |
| 87 gfx::Range /* replacement_range */, | 87 gfx::Range /* replacement_range */, |
| 88 int /* relative_cursor_pos */) | 88 int /* relative_cursor_pos */) |
| 89 | 89 |
| 90 // This message is sent from BrowserPlugin to BrowserPluginGuest to notify that | 90 // This message is sent from BrowserPlugin to BrowserPluginGuest to notify that |
| 91 // inserting the current composition is requested. | 91 // inserting the current composition is requested. |
| 92 IPC_MESSAGE_CONTROL1(BrowserPluginHostMsg_ImeFinishComposingText, | 92 IPC_MESSAGE_CONTROL2(BrowserPluginHostMsg_ImeFinishComposingText, |
| 93 int /* browser_plugin_instance_id */, |
| 93 bool /* keep selection */) | 94 bool /* keep selection */) |
| 94 | 95 |
| 95 // Deletes the current selection plus the specified number of characters before | 96 // Deletes the current selection plus the specified number of characters before |
| 96 // and after the selection or caret. | 97 // and after the selection or caret. |
| 97 IPC_MESSAGE_CONTROL3(BrowserPluginHostMsg_ExtendSelectionAndDelete, | 98 IPC_MESSAGE_CONTROL3(BrowserPluginHostMsg_ExtendSelectionAndDelete, |
| 98 int /* browser_plugin_instance_id */, | 99 int /* browser_plugin_instance_id */, |
| 99 int /* before */, | 100 int /* before */, |
| 100 int /* after */) | 101 int /* after */) |
| 101 | 102 |
| 102 // This message is sent to the browser process to indicate that the | 103 // This message is sent to the browser process to indicate that the |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 | 198 |
| 198 // Forwards a PointerLock Unlock request to the BrowserPlugin. | 199 // Forwards a PointerLock Unlock request to the BrowserPlugin. |
| 199 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetMouseLock, | 200 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetMouseLock, |
| 200 int /* browser_plugin_instance_id */, | 201 int /* browser_plugin_instance_id */, |
| 201 bool /* enable */) | 202 bool /* enable */) |
| 202 | 203 |
| 203 // Sends text to be displayed in tooltip. | 204 // Sends text to be displayed in tooltip. |
| 204 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetTooltipText, | 205 IPC_MESSAGE_CONTROL2(BrowserPluginMsg_SetTooltipText, |
| 205 int /* browser_plugin_instance_id */, | 206 int /* browser_plugin_instance_id */, |
| 206 base::string16 /* tooltip_text */) | 207 base::string16 /* tooltip_text */) |
| OLD | NEW |