| 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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 ppapi::ViewData /* new_data */, | 622 ppapi::ViewData /* new_data */, |
| 623 PP_Bool /* flash_fullscreen */) | 623 PP_Bool /* flash_fullscreen */) |
| 624 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus, | 624 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus, |
| 625 PP_Instance /* instance */, | 625 PP_Instance /* instance */, |
| 626 PP_Bool /* has_focus */) | 626 PP_Bool /* has_focus */) |
| 627 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPInstance_HandleDocumentLoad, | 627 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPInstance_HandleDocumentLoad, |
| 628 PP_Instance /* instance */, | 628 PP_Instance /* instance */, |
| 629 int /* pending_loader_host_id */, | 629 int /* pending_loader_host_id */, |
| 630 ppapi::URLResponseInfoData /* response */) | 630 ppapi::URLResponseInfoData /* response */) |
| 631 | 631 |
| 632 // PPP_Messaging. | 632 // PPP_Messaging and PPP_MessageHandler. |
| 633 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage, | 633 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage, |
| 634 PP_Instance /* instance */, | 634 PP_Instance /* instance */, |
| 635 ppapi::proxy::SerializedVar /* message */) | 635 ppapi::proxy::SerializedVar /* message */) |
| 636 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiMsg_PPPMessageHandler_HandleBlockingMessage, |
| 637 PP_Instance /* instance */, |
| 638 ppapi::proxy::SerializedVar /* message */, |
| 639 ppapi::proxy::SerializedVar /* result */, |
| 640 bool /* was_handled */); |
| 636 | 641 |
| 637 // PPP_MouseLock. | 642 // PPP_MouseLock. |
| 638 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPMouseLock_MouseLockLost, | 643 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPMouseLock_MouseLockLost, |
| 639 PP_Instance /* instance */) | 644 PP_Instance /* instance */) |
| 640 | 645 |
| 641 // PPP_Pdf | 646 // PPP_Pdf |
| 642 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPPdf_Rotate, | 647 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPPdf_Rotate, |
| 643 PP_Instance /* instance */, | 648 PP_Instance /* instance */, |
| 644 bool /* clockwise */) | 649 bool /* clockwise */) |
| 645 | 650 |
| (...skipping 1541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2187 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2192 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
| 2188 PP_TalkPermission /* permission */) | 2193 PP_TalkPermission /* permission */) |
| 2189 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2194 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
| 2190 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2195 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
| 2191 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2196 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
| 2192 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2197 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
| 2193 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2198 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
| 2194 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2199 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
| 2195 | 2200 |
| 2196 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2201 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |