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 #include <string> | 6 #include <string> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
890 // PPB_TextInput. | 890 // PPB_TextInput. |
891 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType, | 891 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType, |
892 PP_Instance /* instance */, | 892 PP_Instance /* instance */, |
893 PP_TextInput_Type /* type */) | 893 PP_TextInput_Type /* type */) |
894 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition, | 894 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition, |
895 PP_Instance /* instance */, | 895 PP_Instance /* instance */, |
896 PP_Rect /* caret */, | 896 PP_Rect /* caret */, |
897 PP_Rect /* bounding_box */) | 897 PP_Rect /* bounding_box */) |
898 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, | 898 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, |
899 PP_Instance /* instance */) | 899 PP_Instance /* instance */) |
900 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_SelectionChanged, | |
901 PP_Instance /* instance */) | |
902 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBTextInput_UpdateSurroundingText, | |
903 PP_Instance /* instance */, | |
904 std::string /* text */, | |
905 uint32_t /* caret */, | |
906 uint32_t /* anchor */) | |
907 | |
908 // PPP_TextInput. | |
909 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.
| |
910 PP_Instance /* instance */, | |
911 uint32_t /* desired_number_of_characters */) | |
900 | 912 |
901 // PPB_URLLoader. | 913 // PPB_URLLoader. |
902 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create, | 914 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create, |
903 PP_Instance /* instance */, | 915 PP_Instance /* instance */, |
904 ppapi::HostResource /* result */) | 916 ppapi::HostResource /* result */) |
905 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_Open, | 917 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_Open, |
906 ppapi::HostResource /* loader */, | 918 ppapi::HostResource /* loader */, |
907 ppapi::PPB_URLRequestInfo_Data /* request_data */) | 919 ppapi::PPB_URLRequestInfo_Data /* request_data */) |
908 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_FollowRedirect, | 920 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBURLLoader_FollowRedirect, |
909 ppapi::HostResource /* loader */) | 921 ppapi::HostResource /* loader */) |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1237 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Accept, | 1249 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Accept, |
1238 uint32 /* real_socket_id */) | 1250 uint32 /* real_socket_id */) |
1239 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, | 1251 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, |
1240 uint32 /* real_socket_id */) | 1252 uint32 /* real_socket_id */) |
1241 | 1253 |
1242 // PPB_Font. | 1254 // PPB_Font. |
1243 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1255 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
1244 std::string /* result */) | 1256 std::string /* result */) |
1245 #endif // !defined(OS_NACL) | 1257 #endif // !defined(OS_NACL) |
1246 | 1258 |
OLD | NEW |