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

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

Issue 8930023: Rev the Flash interface to add new functionality. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 ppapi::proxy::PPBFlash_DrawGlyphs_Params /* params */, 656 ppapi::proxy::PPBFlash_DrawGlyphs_Params /* params */,
657 PP_Bool /* result */) 657 PP_Bool /* result */)
658 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetProxyForURL, 658 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetProxyForURL,
659 PP_Instance /* instance */, 659 PP_Instance /* instance */,
660 std::string /* url */, 660 std::string /* url */,
661 ppapi::proxy::SerializedVar /* result */) 661 ppapi::proxy::SerializedVar /* result */)
662 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiHostMsg_PPBFlash_Navigate, 662 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiHostMsg_PPBFlash_Navigate,
663 PP_Instance /* instance */, 663 PP_Instance /* instance */,
664 ppapi::PPB_URLRequestInfo_Data /* request_data */, 664 ppapi::PPB_URLRequestInfo_Data /* request_data */,
665 std::string /* target */, 665 std::string /* target */,
666 bool /* from_user_action */, 666 PP_Bool /* from_user_action */,
667 int32_t /* result */) 667 int32_t /* result */)
668 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop, 668 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_RunMessageLoop,
669 PP_Instance /* instance */) 669 PP_Instance /* instance */)
670 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop, 670 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop,
671 PP_Instance /* instance */) 671 PP_Instance /* instance */)
672 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetLocalTimeZoneOffset, 672 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetLocalTimeZoneOffset,
673 PP_Instance /* instance */, 673 PP_Instance /* instance */,
674 PP_Time /* t */, 674 PP_Time /* t */,
675 double /* offset */) 675 double /* offset */)
676 676
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
1117 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1117 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1118 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1118 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1119 ppapi::HostResource /* video_decoder */, 1119 ppapi::HostResource /* video_decoder */,
1120 int32_t /* picture buffer id */) 1120 int32_t /* picture buffer id */)
1121 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1121 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1122 ppapi::HostResource /* video_decoder */) 1122 ppapi::HostResource /* video_decoder */)
1123 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1123 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1124 ppapi::HostResource /* video_decoder */) 1124 ppapi::HostResource /* video_decoder */)
1125 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1125 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1126 ppapi::HostResource /* video_decoder */) 1126 ppapi::HostResource /* video_decoder */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698