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/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 1326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1337 // Starts an extension API request which expects a response sent back using a | 1337 // Starts an extension API request which expects a response sent back using a |
1338 // PpapiPluginMsg_ExtensionsCommon_CallReply message. | 1338 // PpapiPluginMsg_ExtensionsCommon_CallReply message. |
1339 // |request_name| is an API function name. |args| is a list of input arguments. | 1339 // |request_name| is an API function name. |args| is a list of input arguments. |
1340 // |output| is a list of output results. | 1340 // |output| is a list of output results. |
1341 IPC_MESSAGE_CONTROL2(PpapiHostMsg_ExtensionsCommon_Call, | 1341 IPC_MESSAGE_CONTROL2(PpapiHostMsg_ExtensionsCommon_Call, |
1342 std::string /* request_name */, | 1342 std::string /* request_name */, |
1343 base::ListValue /* args */) | 1343 base::ListValue /* args */) |
1344 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ExtensionsCommon_CallReply, | 1344 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_ExtensionsCommon_CallReply, |
1345 base::ListValue /* output */) | 1345 base::ListValue /* output */) |
1346 | 1346 |
| 1347 // Ext_CrxFileSystem |
| 1348 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Ext_CrxFileSystem_Create) |
| 1349 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Ext_CrxFileSystem_BrowserOpen) |
| 1350 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Ext_CrxFileSystem_BrowserOpenReply, |
| 1351 std::string /* fsid */) |
| 1352 |
1347 // File chooser. | 1353 // File chooser. |
1348 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) | 1354 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) |
1349 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, | 1355 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, |
1350 bool /* save_as */, | 1356 bool /* save_as */, |
1351 bool /* open_multiple */, | 1357 bool /* open_multiple */, |
1352 std::string /* suggested_file_name */, | 1358 std::string /* suggested_file_name */, |
1353 std::vector<std::string> /* accept_mime_types */) | 1359 std::vector<std::string> /* accept_mime_types */) |
1354 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, | 1360 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, |
1355 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) | 1361 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) |
1356 | 1362 |
(...skipping 30 matching lines...) Expand all Loading... |
1387 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileIO_RequestOSFileHandle) | 1393 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileIO_RequestOSFileHandle) |
1388 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileIO_RequestOSFileHandleReply) | 1394 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileIO_RequestOSFileHandleReply) |
1389 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileIO_GeneralReply) | 1395 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileIO_GeneralReply) |
1390 | 1396 |
1391 // FileSystem | 1397 // FileSystem |
1392 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Create, | 1398 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Create, |
1393 PP_FileSystemType /* type */) | 1399 PP_FileSystemType /* type */) |
1394 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Open, | 1400 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_Open, |
1395 int64_t /* expected_size */) | 1401 int64_t /* expected_size */) |
1396 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_OpenReply) | 1402 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_FileSystem_OpenReply) |
| 1403 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FileSystem_InitIsolatedFileSystem, |
| 1404 std::string /* fsid */) |
1397 | 1405 |
1398 // Flash device ID. | 1406 // Flash device ID. |
1399 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_Create) | 1407 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_Create) |
1400 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_GetDeviceID) | 1408 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashDeviceID_GetDeviceID) |
1401 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDeviceID_GetDeviceIDReply, | 1409 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashDeviceID_GetDeviceIDReply, |
1402 std::string /* id */) | 1410 std::string /* id */) |
1403 | 1411 |
1404 // Gamepad. | 1412 // Gamepad. |
1405 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create) | 1413 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create) |
1406 | 1414 |
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1818 std::vector<ppapi::HostResource> /* buffers */, | 1826 std::vector<ppapi::HostResource> /* buffers */, |
1819 uint32_t /* buffer_size */) | 1827 uint32_t /* buffer_size */) |
1820 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 1828 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
1821 uint32_t /* status */) | 1829 uint32_t /* status */) |
1822 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 1830 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
1823 uint32_t /* error */) | 1831 uint32_t /* error */) |
1824 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 1832 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
1825 uint32_t /* buffer */) | 1833 uint32_t /* buffer */) |
1826 | 1834 |
1827 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1835 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |