Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 264303002: PPAPI: Implement synchronous postMessage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: defer some changes Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 ppapi::ViewData /* new_data */, 620 ppapi::ViewData /* new_data */,
621 PP_Bool /* flash_fullscreen */) 621 PP_Bool /* flash_fullscreen */)
622 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus, 622 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus,
623 PP_Instance /* instance */, 623 PP_Instance /* instance */,
624 PP_Bool /* has_focus */) 624 PP_Bool /* has_focus */)
625 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPInstance_HandleDocumentLoad, 625 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPInstance_HandleDocumentLoad,
626 PP_Instance /* instance */, 626 PP_Instance /* instance */,
627 int /* pending_loader_host_id */, 627 int /* pending_loader_host_id */,
628 ppapi::URLResponseInfoData /* response */) 628 ppapi::URLResponseInfoData /* response */)
629 629
630 // PPP_Messaging. 630 // PPP_Messaging and PPP_MessageHandler.
631 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage, 631 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPMessaging_HandleMessage,
632 PP_Instance /* instance */, 632 PP_Instance /* instance */,
633 ppapi::proxy::SerializedVar /* message */) 633 ppapi::proxy::SerializedVar /* message */)
634 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiMsg_PPPMessageHandler_HandleBlockingMessage,
635 PP_Instance /* instance */,
636 ppapi::proxy::SerializedVar /* message */,
637 ppapi::proxy::SerializedVar /* result */,
638 bool /* was_handled */);
634 639
635 // PPP_MouseLock. 640 // PPP_MouseLock.
636 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPMouseLock_MouseLockLost, 641 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPMouseLock_MouseLockLost,
637 PP_Instance /* instance */) 642 PP_Instance /* instance */)
638 643
639 // PPP_Pdf 644 // PPP_Pdf
640 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPPdf_Rotate, 645 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPPdf_Rotate,
641 PP_Instance /* instance */, 646 PP_Instance /* instance */,
642 bool /* clockwise */) 647 bool /* clockwise */)
643 648
(...skipping 1527 matching lines...) Expand 10 before | Expand all | Expand 10 after
2171 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2176 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2172 PP_TalkPermission /* permission */) 2177 PP_TalkPermission /* permission */)
2173 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2178 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2174 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2179 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2175 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2180 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2176 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2181 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2177 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2182 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2178 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2183 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2179 2184
2180 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2185 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698