| 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 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1022 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_ClearInputEvents, | 1022 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_ClearInputEvents, |
| 1023 PP_Instance /* instance */, | 1023 PP_Instance /* instance */, |
| 1024 uint32_t /* event_classes */) | 1024 uint32_t /* event_classes */) |
| 1025 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_PostMessage, | 1025 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_PostMessage, |
| 1026 PP_Instance /* instance */, | 1026 PP_Instance /* instance */, |
| 1027 ppapi::proxy::SerializedVar /* message */) | 1027 ppapi::proxy::SerializedVar /* message */) |
| 1028 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_LockMouse, | 1028 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_LockMouse, |
| 1029 PP_Instance /* instance */) | 1029 PP_Instance /* instance */) |
| 1030 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_UnlockMouse, | 1030 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_UnlockMouse, |
| 1031 PP_Instance /* instance */) | 1031 PP_Instance /* instance */) |
| 1032 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBPInstance_GetDefaultPrintSettings, | |
| 1033 PP_Instance /* instance */, | |
| 1034 PP_PrintSettings_Dev /* settings */, | |
| 1035 bool /* result */) | |
| 1036 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_ResolveRelativeToDocument, | 1032 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_ResolveRelativeToDocument, |
| 1037 PP_Instance /* instance */, | 1033 PP_Instance /* instance */, |
| 1038 ppapi::proxy::SerializedVar /* relative */, | 1034 ppapi::proxy::SerializedVar /* relative */, |
| 1039 ppapi::proxy::SerializedVar /* result */) | 1035 ppapi::proxy::SerializedVar /* result */) |
| 1040 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_DocumentCanRequest, | 1036 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_DocumentCanRequest, |
| 1041 PP_Instance /* instance */, | 1037 PP_Instance /* instance */, |
| 1042 ppapi::proxy::SerializedVar /* relative */, | 1038 ppapi::proxy::SerializedVar /* relative */, |
| 1043 PP_Bool /* result */) | 1039 PP_Bool /* result */) |
| 1044 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_DocumentCanAccessDocument, | 1040 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_DocumentCanAccessDocument, |
| 1045 PP_Instance /* active */, | 1041 PP_Instance /* active */, |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1551 std::string /* suggested_file_name */, | 1547 std::string /* suggested_file_name */, |
| 1552 std::vector<std::string> /* accept_mime_types */) | 1548 std::vector<std::string> /* accept_mime_types */) |
| 1553 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, | 1549 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, |
| 1554 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) | 1550 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) |
| 1555 | 1551 |
| 1556 // Gamepad. | 1552 // Gamepad. |
| 1557 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create) | 1553 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_Create) |
| 1558 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_RequestMemory) | 1554 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Gamepad_RequestMemory) |
| 1559 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Gamepad_SendMemory, | 1555 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Gamepad_SendMemory, |
| 1560 base::SharedMemoryHandle /* handle */) | 1556 base::SharedMemoryHandle /* handle */) |
| 1557 // Printing. |
| 1558 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create) |
| 1559 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_GetDefaultPrintSettings) |
| 1560 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply, |
| 1561 PP_PrintSettings_Dev /* print_settings */) |
| OLD | NEW |