Chromium Code Reviews| Index: ppapi/proxy/ppapi_messages.h |
| diff --git a/ppapi/proxy/ppapi_messages.h b/ppapi/proxy/ppapi_messages.h |
| index 85b08e38c6d56a2ac468896df638e7bc6396a245..2ec94a7079ffc57c8d7183303446d86b537d63e5 100644 |
| --- a/ppapi/proxy/ppapi_messages.h |
| +++ b/ppapi/proxy/ppapi_messages.h |
| @@ -897,6 +897,18 @@ IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition, |
| PP_Rect /* bounding_box */) |
| IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, |
| PP_Instance /* instance */) |
| +IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_SelectionChanged, |
| + PP_Instance /* instance */) |
| +IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBTextInput_UpdateSurroundingText, |
| + PP_Instance /* instance */, |
| + std::string /* text */, |
| + uint32_t /* caret */, |
| + uint32_t /* anchor */) |
| + |
| +// PPP_TextInput. |
| +IPC_MESSAGE_ROUTED2(PpapiMsg_PPPTextInput_RequestSurroundingText, |
|
yzshen1
2012/03/08 07:51:43
Should be moved to the PpapiMsg* section.
kinaba
2012/03/14 04:28:54
Done.
|
| + PP_Instance /* instance */, |
| + uint32_t /* desired_number_of_characters */) |
| // PPB_URLLoader. |
| IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create, |