| 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 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 ppapi::ViewData /* new_data */, | 669 ppapi::ViewData /* new_data */, |
| 670 PP_Bool /* flash_fullscreen */) | 670 PP_Bool /* flash_fullscreen */) |
| 671 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus, | 671 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus, |
| 672 PP_Instance /* instance */, | 672 PP_Instance /* instance */, |
| 673 PP_Bool /* has_focus */) | 673 PP_Bool /* has_focus */) |
| 674 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPInstance_HandleDocumentLoad, | 674 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPInstance_HandleDocumentLoad, |
| 675 PP_Instance /* instance */, | 675 PP_Instance /* instance */, |
| 676 int /* pending_loader_host_id */, | 676 int /* pending_loader_host_id */, |
| 677 ppapi::URLResponseInfoData /* response */) | 677 ppapi::URLResponseInfoData /* response */) |
| 678 | 678 |
| 679 // PPP_Messaging. | 679 // PPP_Messaging and PPP_MessageHandler. |
| 680 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage, | 680 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage, |
| 681 PP_Instance /* instance */, | 681 PP_Instance /* instance */, |
| 682 ppapi::proxy::SerializedVar /* message */) | 682 ppapi::proxy::SerializedVar /* message */) |
| 683 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiMsg_PPPMessageHandler_HandleBlockingMessage, |
| 684 PP_Instance /* instance */, |
| 685 ppapi::proxy::SerializedVar /* message */, |
| 686 ppapi::proxy::SerializedVar /* result */, |
| 687 bool /* was_handled */); |
| 683 | 688 |
| 684 // PPP_MouseLock. | 689 // PPP_MouseLock. |
| 685 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPMouseLock_MouseLockLost, | 690 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPMouseLock_MouseLockLost, |
| 686 PP_Instance /* instance */) | 691 PP_Instance /* instance */) |
| 687 | 692 |
| 688 // PPP_Pdf | 693 // PPP_Pdf |
| 689 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPPdf_Rotate, | 694 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPPdf_Rotate, |
| 690 PP_Instance /* instance */, | 695 PP_Instance /* instance */, |
| 691 bool /* clockwise */) | 696 bool /* clockwise */) |
| 692 | 697 |
| (...skipping 1533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2226 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2231 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
| 2227 PP_TalkPermission /* permission */) | 2232 PP_TalkPermission /* permission */) |
| 2228 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2233 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
| 2229 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2234 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
| 2230 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2235 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
| 2231 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2236 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
| 2232 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2237 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
| 2233 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2238 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
| 2234 | 2239 |
| 2235 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2240 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |