Chromium Code Reviews| Index: content/common/input_messages.h |
| diff --git a/content/common/input_messages.h b/content/common/input_messages.h |
| index c7920567f651f68e7be0e9899537268574204fb8..de8cc9c93ac0a311551a6f0a60a7f525d6e102a4 100644 |
| --- a/content/common/input_messages.h |
| +++ b/content/common/input_messages.h |
| @@ -145,6 +145,12 @@ IPC_MESSAGE_ROUTED2(InputMsg_ExtendSelectionAndDelete, |
| int /* before */, |
| int /* after */) |
| +// Deletes text before and after the current cursor position, excluding the |
| +// selection. |
| +IPC_MESSAGE_ROUTED2(InputMsg_DeleteSurroundingText, |
| + int /* before */, |
|
clamy
2016/10/13 13:10:07
I think we should also convert this to size_t if t
yabinh
2016/10/13 13:39:37
Done.
yabinh
2016/10/13 13:58:57
Got trybot compile failure in patch set #26:
cont
|
| + int /* after */) |
| + |
| // Selects between the given start and end offsets in the currently focused |
| // editable field. |
| IPC_MESSAGE_ROUTED2(InputMsg_SetEditableSelectionOffsets, |