| 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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 PP_Bool /* result */) | 695 PP_Bool /* result */) |
| 696 | 696 |
| 697 // PPB_FileChooser. | 697 // PPB_FileChooser. |
| 698 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFileChooser_Create, | 698 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFileChooser_Create, |
| 699 PP_Instance /* instance */, | 699 PP_Instance /* instance */, |
| 700 int /* mode */, | 700 int /* mode */, |
| 701 std::string /* accept_mime_types */, | 701 std::string /* accept_mime_types */, |
| 702 ppapi::HostResource /* result */) | 702 ppapi::HostResource /* result */) |
| 703 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileChooser_Show, | 703 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileChooser_Show, |
| 704 ppapi::HostResource /* file_chooser */, | 704 ppapi::HostResource /* file_chooser */, |
| 705 bool /* save_as */, | 705 PP_Bool /* save_as */, |
| 706 std::string /* suggested_file_name */, | 706 ppapi::proxy::SerializedVar /* suggested_file_name */, |
| 707 bool /* require_user_gesture */) | 707 bool /* require_user_gesture */) |
| 708 | 708 |
| 709 // PPB_FileIO. | 709 // PPB_FileIO. |
| 710 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileIO_Create, | 710 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileIO_Create, |
| 711 PP_Instance /* instance */, | 711 PP_Instance /* instance */, |
| 712 ppapi::HostResource /* result */) | 712 ppapi::HostResource /* result */) |
| 713 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileIO_Open, | 713 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileIO_Open, |
| 714 ppapi::HostResource /* host_resource */, | 714 ppapi::HostResource /* host_resource */, |
| 715 ppapi::HostResource /* file_ref_resource */, | 715 ppapi::HostResource /* file_ref_resource */, |
| 716 int32_t /* open_flags */) | 716 int32_t /* open_flags */) |
| (...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPServerSocket_Accept, | 1333 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PPBTCPServerSocket_Accept, |
| 1334 int32 /* tcp_client_socket_routing_id */, | 1334 int32 /* tcp_client_socket_routing_id */, |
| 1335 uint32 /* server_socket_id */) | 1335 uint32 /* server_socket_id */) |
| 1336 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, | 1336 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBTCPServerSocket_Destroy, |
| 1337 uint32 /* socket_id */) | 1337 uint32 /* socket_id */) |
| 1338 | 1338 |
| 1339 // PPB_Font. | 1339 // PPB_Font. |
| 1340 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1340 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
| 1341 std::string /* result */) | 1341 std::string /* result */) |
| 1342 #endif // !defined(OS_NACL) | 1342 #endif // !defined(OS_NACL) |
| OLD | NEW |