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

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

Issue 9212066: Modified the flash cipboard interface to add html clipboard support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 10 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 <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 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 PP_Instance /* instance */, 707 PP_Instance /* instance */,
708 PP_Rect /* rect */, 708 PP_Rect /* rect */,
709 PP_Bool /* result */) 709 PP_Bool /* result */)
710 710
711 // PPB_Flash_Clipboard. 711 // PPB_Flash_Clipboard.
712 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable, 712 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable,
713 PP_Instance /* instance */, 713 PP_Instance /* instance */,
714 int /* clipboard_type */, 714 int /* clipboard_type */,
715 int /* format */, 715 int /* format */,
716 bool /* result */) 716 bool /* result */)
717 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText, 717 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_ReadData,
718 PP_Instance /* instance */, 718 PP_Instance /* instance */,
719 int /* clipboard_type */, 719 int /* clipboard_type */,
720 int /* format */,
720 ppapi::proxy::SerializedVar /* result */) 721 ppapi::proxy::SerializedVar /* result */)
721 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashClipboard_WritePlainText, 722 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlashClipboard_WriteData,
722 PP_Instance /* instance */, 723 PP_Instance /* instance */,
723 int /* clipboard_type */, 724 int /* clipboard_type */,
724 ppapi::proxy::SerializedVar /* text */) 725 std::vector<ppapi::proxy::SerializedVar> /* formats */,
726 std::vector<ppapi::proxy::SerializedVar> /* data */)
725 727
726 // PPB_Flash_File_FileRef. 728 // PPB_Flash_File_FileRef.
727 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile, 729 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile,
728 ppapi::HostResource /* file_ref */, 730 ppapi::HostResource /* file_ref */,
729 int32_t /* mode */, 731 int32_t /* mode */,
730 IPC::PlatformFileForTransit /* file_handle */, 732 IPC::PlatformFileForTransit /* file_handle */,
731 int32_t /* result */) 733 int32_t /* result */)
732 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile, 734 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile,
733 ppapi::HostResource /* file_ref */, 735 ppapi::HostResource /* file_ref */,
734 PP_FileInfo /* info */, 736 PP_FileInfo /* info */,
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
1172 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1174 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1173 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1175 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1174 ppapi::HostResource /* video_decoder */, 1176 ppapi::HostResource /* video_decoder */,
1175 int32_t /* picture buffer id */) 1177 int32_t /* picture buffer id */)
1176 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1178 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1177 ppapi::HostResource /* video_decoder */) 1179 ppapi::HostResource /* video_decoder */)
1178 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1180 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1179 ppapi::HostResource /* video_decoder */) 1181 ppapi::HostResource /* video_decoder */)
1180 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1182 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1181 ppapi::HostResource /* video_decoder */) 1183 ppapi::HostResource /* video_decoder */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698