| 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 <map> | 6 #include <map> |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 | 646 |
| 647 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_SetPluginToHandleFindRequests, | 647 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_SetPluginToHandleFindRequests, |
| 648 PP_Instance /* instance */) | 648 PP_Instance /* instance */) |
| 649 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_NumberOfFindResultsChanged, | 649 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_NumberOfFindResultsChanged, |
| 650 PP_Instance /* instance */, | 650 PP_Instance /* instance */, |
| 651 int32_t /* total */, | 651 int32_t /* total */, |
| 652 PP_Bool /* final_result */) | 652 PP_Bool /* final_result */) |
| 653 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SelectFindResultChanged, | 653 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SelectFindResultChanged, |
| 654 PP_Instance /* instance */, | 654 PP_Instance /* instance */, |
| 655 int32_t /* index */) | 655 int32_t /* index */) |
| 656 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SetTickmarks, |
| 657 PP_Instance /* instance */, |
| 658 std::vector<PP_Rect> /* tickmarks */) |
| 656 | 659 |
| 657 // PPP_Printing | 660 // PPP_Printing |
| 658 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPPrinting_QuerySupportedFormats, | 661 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPPrinting_QuerySupportedFormats, |
| 659 PP_Instance /* instance */, | 662 PP_Instance /* instance */, |
| 660 uint32_t /* result */) | 663 uint32_t /* result */) |
| 661 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPPrinting_Begin, | 664 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPPrinting_Begin, |
| 662 PP_Instance /* instance */, | 665 PP_Instance /* instance */, |
| 663 std::string /* settings_string */, | 666 std::string /* settings_string */, |
| 664 int32_t /* result */) | 667 int32_t /* result */) |
| 665 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPPrinting_PrintPages, | 668 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPPrinting_PrintPages, |
| (...skipping 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2112 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2115 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
| 2113 PP_TalkPermission /* permission */) | 2116 PP_TalkPermission /* permission */) |
| 2114 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2117 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
| 2115 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2118 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
| 2116 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2119 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
| 2117 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2120 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
| 2118 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2121 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
| 2119 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2122 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
| 2120 | 2123 |
| 2121 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2124 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |