| 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 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1023 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create, | 1023 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create, |
| 1024 PP_Instance /* instance */, | 1024 PP_Instance /* instance */, |
| 1025 uint32_t /* size */, | 1025 uint32_t /* size */, |
| 1026 ppapi::HostResource /* result_resource */, | 1026 ppapi::HostResource /* result_resource */, |
| 1027 base::SharedMemoryHandle /* result_shm_handle */) | 1027 base::SharedMemoryHandle /* result_shm_handle */) |
| 1028 | 1028 |
| 1029 // PPB_FileChooser. | 1029 // PPB_FileChooser. |
| 1030 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFileChooser_Create, | 1030 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFileChooser_Create, |
| 1031 PP_Instance /* instance */, | 1031 PP_Instance /* instance */, |
| 1032 int /* mode */, | 1032 int /* mode */, |
| 1033 std::string /* accept_mime_types */, | 1033 std::string /* accept_types */, |
| 1034 ppapi::HostResource /* result */) | 1034 ppapi::HostResource /* result */) |
| 1035 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileChooser_Show, | 1035 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileChooser_Show, |
| 1036 ppapi::HostResource /* file_chooser */, | 1036 ppapi::HostResource /* file_chooser */, |
| 1037 PP_Bool /* save_as */, | 1037 PP_Bool /* save_as */, |
| 1038 ppapi::proxy::SerializedVar /* suggested_file_name */, | 1038 ppapi::proxy::SerializedVar /* suggested_file_name */, |
| 1039 bool /* require_user_gesture */) | 1039 bool /* require_user_gesture */) |
| 1040 | 1040 |
| 1041 // PPB_NetworkMonitor_Private. | 1041 // PPB_NetworkMonitor_Private. |
| 1042 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBNetworkMonitor_Start, | 1042 IPC_MESSAGE_CONTROL1(PpapiHostMsg_PPBNetworkMonitor_Start, |
| 1043 uint32 /* plugin_dispatcher_id */) | 1043 uint32 /* plugin_dispatcher_id */) |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1328 // PPB_X509Certificate_Private | 1328 // PPB_X509Certificate_Private |
| 1329 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, | 1329 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, |
| 1330 std::vector<char> /* der */, | 1330 std::vector<char> /* der */, |
| 1331 bool /* succeeded */, | 1331 bool /* succeeded */, |
| 1332 ppapi::PPB_X509Certificate_Fields /* result */) | 1332 ppapi::PPB_X509Certificate_Fields /* result */) |
| 1333 | 1333 |
| 1334 // PPB_Font. | 1334 // PPB_Font. |
| 1335 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, | 1335 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, |
| 1336 std::string /* result */) | 1336 std::string /* result */) |
| 1337 #endif // !defined(OS_NACL) | 1337 #endif // !defined(OS_NACL) |
| OLD | NEW |