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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBAudio_NotifyAudioStreamCreated, | 443 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBAudio_NotifyAudioStreamCreated, |
444 ppapi::HostResource /* audio_id */, | 444 ppapi::HostResource /* audio_id */, |
445 int32_t /* result_code (will be != PP_OK on failure) */, | 445 int32_t /* result_code (will be != PP_OK on failure) */, |
446 ppapi::proxy::SerializedHandle /* socket_handle */, | 446 ppapi::proxy::SerializedHandle /* socket_handle */, |
447 ppapi::proxy::SerializedHandle /* handle */) | 447 ppapi::proxy::SerializedHandle /* handle */) |
448 | 448 |
449 // PPB_FileRef. | 449 // PPB_FileRef. |
450 IPC_MESSAGE_ROUTED3( | 450 IPC_MESSAGE_ROUTED3( |
451 PpapiMsg_PPBFileRef_CallbackComplete, | 451 PpapiMsg_PPBFileRef_CallbackComplete, |
452 ppapi::HostResource /* resource */, | 452 ppapi::HostResource /* resource */, |
453 int /* callback_id */, | 453 uint32_t /* callback_id */, |
| 454 int32_t /* result */) |
| 455 |
| 456 IPC_MESSAGE_ROUTED4( |
| 457 PpapiMsg_PPBFileRef_QueryCallbackComplete, |
| 458 ppapi::HostResource /* resource */, |
| 459 PP_FileInfo /* file_info */, |
| 460 uint32_t /* callback_id */, |
454 int32_t /* result */) | 461 int32_t /* result */) |
455 | 462 |
456 // PPB_FileSystem. | 463 // PPB_FileSystem. |
457 IPC_MESSAGE_ROUTED2( | 464 IPC_MESSAGE_ROUTED2( |
458 PpapiMsg_PPBFileSystem_OpenComplete, | 465 PpapiMsg_PPBFileSystem_OpenComplete, |
459 ppapi::HostResource /* filesystem */, | 466 ppapi::HostResource /* filesystem */, |
460 int32_t /* result */) | 467 int32_t /* result */) |
461 | 468 |
462 // PPB_Graphics3D. | 469 // PPB_Graphics3D. |
463 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics3D_SwapBuffersACK, | 470 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics3D_SwapBuffersACK, |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
786 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileRef_Create, | 793 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileRef_Create, |
787 ppapi::HostResource /* file_system */, | 794 ppapi::HostResource /* file_system */, |
788 std::string /* path */, | 795 std::string /* path */, |
789 ppapi::PPB_FileRef_CreateInfo /* result */) | 796 ppapi::PPB_FileRef_CreateInfo /* result */) |
790 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileRef_GetParent, | 797 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileRef_GetParent, |
791 ppapi::HostResource /* file_ref */, | 798 ppapi::HostResource /* file_ref */, |
792 ppapi::PPB_FileRef_CreateInfo /* result */) | 799 ppapi::PPB_FileRef_CreateInfo /* result */) |
793 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_MakeDirectory, | 800 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_MakeDirectory, |
794 ppapi::HostResource /* file_ref */, | 801 ppapi::HostResource /* file_ref */, |
795 PP_Bool /* make_ancestors */, | 802 PP_Bool /* make_ancestors */, |
796 int /* callback_id */) | 803 uint32_t /* callback_id */) |
797 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileRef_Touch, | 804 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFileRef_Touch, |
798 ppapi::HostResource /* file_ref */, | 805 ppapi::HostResource /* file_ref */, |
799 PP_Time /* last_access */, | 806 PP_Time /* last_access */, |
800 PP_Time /* last_modified */, | 807 PP_Time /* last_modified */, |
801 int /* callback_id */) | 808 uint32_t /* callback_id */) |
802 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileRef_Delete, | 809 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileRef_Delete, |
803 ppapi::HostResource /* file_ref */, | 810 ppapi::HostResource /* file_ref */, |
804 int /* callback_id */) | 811 uint32_t /* callback_id */) |
805 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_Rename, | 812 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFileRef_Rename, |
806 ppapi::HostResource /* file_ref */, | 813 ppapi::HostResource /* file_ref */, |
807 ppapi::HostResource /* new_file_ref */, | 814 ppapi::HostResource /* new_file_ref */, |
808 int /* callback_id */) | 815 uint32_t /* callback_id */) |
| 816 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileRef_Query, |
| 817 ppapi::HostResource /* file_ref */, |
| 818 uint32_t /* callback_id */) |
809 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileRef_GetAbsolutePath, | 819 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFileRef_GetAbsolutePath, |
810 ppapi::HostResource /* file_ref */, | 820 ppapi::HostResource /* file_ref */, |
811 ppapi::proxy::SerializedVar /* result */) | 821 ppapi::proxy::SerializedVar /* result */) |
812 | 822 |
813 // PPB_FileSystem. | 823 // PPB_FileSystem. |
814 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileSystem_Create, | 824 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFileSystem_Create, |
815 PP_Instance /* instance */, | 825 PP_Instance /* instance */, |
816 int /* type */, | 826 int /* type */, |
817 ppapi::HostResource /* result */) | 827 ppapi::HostResource /* result */) |
818 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileSystem_Open, | 828 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFileSystem_Open, |
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1817 std::vector<ppapi::HostResource> /* buffers */, | 1827 std::vector<ppapi::HostResource> /* buffers */, |
1818 uint32_t /* buffer_size */) | 1828 uint32_t /* buffer_size */) |
1819 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 1829 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
1820 uint32_t /* status */) | 1830 uint32_t /* status */) |
1821 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 1831 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
1822 uint32_t /* error */) | 1832 uint32_t /* error */) |
1823 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 1833 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
1824 uint32_t /* buffer */) | 1834 uint32_t /* buffer */) |
1825 | 1835 |
1826 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1836 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |