| 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 968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 979 // PPB_TextInput. | 979 // PPB_TextInput. |
| 980 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType, | 980 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType, |
| 981 PP_Instance /* instance */, | 981 PP_Instance /* instance */, |
| 982 PP_TextInput_Type /* type */) | 982 PP_TextInput_Type /* type */) |
| 983 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition, | 983 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition, |
| 984 PP_Instance /* instance */, | 984 PP_Instance /* instance */, |
| 985 PP_Rect /* caret */, | 985 PP_Rect /* caret */, |
| 986 PP_Rect /* bounding_box */) | 986 PP_Rect /* bounding_box */) |
| 987 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, | 987 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, |
| 988 PP_Instance /* instance */) | 988 PP_Instance /* instance */) |
| 989 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_SelectionChanged, | |
| 990 PP_Instance /* instance */) | |
| 991 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBTextInput_UpdateSurroundingText, | 989 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBTextInput_UpdateSurroundingText, |
| 992 PP_Instance /* instance */, | 990 PP_Instance /* instance */, |
| 993 std::string /* text */, | 991 std::string /* text */, |
| 994 uint32_t /* caret */, | 992 uint32_t /* caret */, |
| 995 uint32_t /* anchor */) | 993 uint32_t /* anchor */) |
| 996 | 994 |
| 997 // PPB_URLLoader. | 995 // PPB_URLLoader. |
| 998 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create, | 996 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create, |
| 999 PP_Instance /* instance */, | 997 PP_Instance /* instance */, |
| 1000 ppapi::HostResource /* result */) | 998 ppapi::HostResource /* result */) |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPServerSocket_Accept, | 1331 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPServerSocket_Accept, |
| 1334 int32 /* tcp_client_socket_routing_id */, | 1332 int32 /* tcp_client_socket_routing_id */, |
| 1335 uint32 /* server_socket_id */) | 1333 uint32 /* server_socket_id */) |
| 1336 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, | 1334 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, |
| 1337 uint32 /* socket_id */) | 1335 uint32 /* socket_id */) |
| 1338 | 1336 |
| 1339 // PPB_Font. | 1337 // PPB_Font. |
| 1340 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1338 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
| 1341 std::string /* result */) | 1339 std::string /* result */) |
| 1342 #endif // !defined(OS_NACL) | 1340 #endif // !defined(OS_NACL) |
| OLD | NEW |