| 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 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 uint32 /* accepted_socket_id */, | 699 uint32 /* accepted_socket_id */, |
| 700 PP_NetAddress_Private /* local_addr */, | 700 PP_NetAddress_Private /* local_addr */, |
| 701 PP_NetAddress_Private /* remote_addr */) | 701 PP_NetAddress_Private /* remote_addr */) |
| 702 | 702 |
| 703 // PPB_HostResolver_Private. | 703 // PPB_HostResolver_Private. |
| 704 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBHostResolver_ResolveACK, | 704 IPC_MESSAGE_ROUTED5(PpapiMsg_PPBHostResolver_ResolveACK, |
| 705 uint32 /* plugin_dispatcher_id */, | 705 uint32 /* plugin_dispatcher_id */, |
| 706 uint32 /* host_resolver_id */, | 706 uint32 /* host_resolver_id */, |
| 707 bool /* succeeded */, | 707 bool /* succeeded */, |
| 708 std::string /* canonical_name */, | 708 std::string /* canonical_name */, |
| 709 ppapi::NetAddressList /* net_address_list */) | 709 std::vector<PP_NetAddress_Private> /* net_address_list */) |
| 710 | 710 |
| 711 #if !defined(OS_NACL) && !defined(NACL_WIN64) | 711 #if !defined(OS_NACL) && !defined(NACL_WIN64) |
| 712 // PPP_Instance_Private. | 712 // PPP_Instance_Private. |
| 713 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstancePrivate_GetInstanceObject, | 713 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstancePrivate_GetInstanceObject, |
| 714 PP_Instance /* instance */, | 714 PP_Instance /* instance */, |
| 715 ppapi::proxy::SerializedVar /* result */) | 715 ppapi::proxy::SerializedVar /* result */) |
| 716 | 716 |
| 717 // PPB_VideoCapture_Dev | 717 // PPB_VideoCapture_Dev |
| 718 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBVideoCapture_EnumerateDevicesACK, | 718 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBVideoCapture_EnumerateDevicesACK, |
| 719 ppapi::HostResource /* video_capture */, | 719 ppapi::HostResource /* video_capture */, |
| (...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1558 | 1558 |
| 1559 // Reply to a RequestMemory call. This supplies the shared memory handle. The | 1559 // Reply to a RequestMemory call. This supplies the shared memory handle. The |
| 1560 // actual handle is passed in the ReplyParams struct. | 1560 // actual handle is passed in the ReplyParams struct. |
| 1561 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory) | 1561 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Gamepad_SendMemory) |
| 1562 | 1562 |
| 1563 // Printing. | 1563 // Printing. |
| 1564 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create) | 1564 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create) |
| 1565 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_GetDefaultPrintSettings) | 1565 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_GetDefaultPrintSettings) |
| 1566 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply, | 1566 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply, |
| 1567 PP_PrintSettings_Dev /* print_settings */) | 1567 PP_PrintSettings_Dev /* print_settings */) |
| OLD | NEW |