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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
610 ppapi::ViewData /* new_data */, | 610 ppapi::ViewData /* new_data */, |
611 PP_Bool /* flash_fullscreen */) | 611 PP_Bool /* flash_fullscreen */) |
612 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus, | 612 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus, |
613 PP_Instance /* instance */, | 613 PP_Instance /* instance */, |
614 PP_Bool /* has_focus */) | 614 PP_Bool /* has_focus */) |
615 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPInstance_HandleDocumentLoad, | 615 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPInstance_HandleDocumentLoad, |
616 PP_Instance /* instance */, | 616 PP_Instance /* instance */, |
617 int /* pending_loader_host_id */, | 617 int /* pending_loader_host_id */, |
618 ppapi::URLResponseInfoData /* response */) | 618 ppapi::URLResponseInfoData /* response */) |
619 | 619 |
620 // PPP_Messaging. | 620 // PPP_Messaging and PPP_MessageHandler. |
621 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage, | 621 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage, |
622 PP_Instance /* instance */, | 622 PP_Instance /* instance */, |
623 ppapi::proxy::SerializedVar /* message */) | 623 ppapi::proxy::SerializedVar /* message */) |
624 IPC_SYNC_MESSAGE_ROUTED(PpapiMsg_PPPMessageHandler_HandleBlockingMessage, | |
Tom Sepez
2014/05/07 22:27:10
Don't you mean IPC_SYNC_MESSAGE_ROUTED2_1?
dmichael (off chromium)
2014/05/30 20:30:46
Removed from this CL. The implementation CL will a
| |
625 PP_Instance /* instance */, | |
626 ppapi::proxy::SerializedVar /* message */, | |
627 ppapi::proxy::SerializedVar /* response */); | |
624 | 628 |
625 // PPP_MouseLock. | 629 // PPP_MouseLock. |
626 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPMouseLock_MouseLockLost, | 630 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPMouseLock_MouseLockLost, |
627 PP_Instance /* instance */) | 631 PP_Instance /* instance */) |
628 | 632 |
629 // PPP_Pdf | 633 // PPP_Pdf |
630 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPPdf_Rotate, | 634 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPPdf_Rotate, |
631 PP_Instance /* instance */, | 635 PP_Instance /* instance */, |
632 bool /* clockwise */) | 636 bool /* clockwise */) |
633 | 637 |
(...skipping 1473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2107 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2111 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2108 PP_TalkPermission /* permission */) | 2112 PP_TalkPermission /* permission */) |
2109 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2113 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2110 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2114 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2111 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2115 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2112 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2116 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2113 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2117 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2114 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2118 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2115 | 2119 |
2116 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2120 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |