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

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) 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 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 int /* format */, 687 int /* format */,
688 bool /* result */) 688 bool /* result */)
689 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText, 689 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashClipboard_ReadPlainText,
690 PP_Instance /* instance */, 690 PP_Instance /* instance */,
691 int /* clipboard_type */, 691 int /* clipboard_type */,
692 ppapi::proxy::SerializedVar /* result */) 692 ppapi::proxy::SerializedVar /* result */)
693 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashClipboard_WritePlainText, 693 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBFlashClipboard_WritePlainText,
694 PP_Instance /* instance */, 694 PP_Instance /* instance */,
695 int /* clipboard_type */, 695 int /* clipboard_type */,
696 ppapi::proxy::SerializedVar /* text */) 696 ppapi::proxy::SerializedVar /* text */)
697 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_ReadData,
698 PP_Instance /* instance */,
699 int /* clipboard_type */,
700 int /* format */,
701 ppapi::proxy::SerializedVar /* result */)
702 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlashClipboard_WriteData,
703 PP_Instance /* instance */,
704 int /* clipboard_type */,
705 std::vector<ppapi::proxy::SerializedVar> /* formats */,
706 std::vector<ppapi::proxy::SerializedVar> /* data */)
697 707
698 // PPB_Flash_File_FileRef. 708 // PPB_Flash_File_FileRef.
699 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile, 709 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile,
700 ppapi::HostResource /* file_ref */, 710 ppapi::HostResource /* file_ref */,
701 int32_t /* mode */, 711 int32_t /* mode */,
702 IPC::PlatformFileForTransit /* file_handle */, 712 IPC::PlatformFileForTransit /* file_handle */,
703 int32_t /* result */) 713 int32_t /* result */)
704 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile, 714 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlashFile_FileRef_QueryFile,
705 ppapi::HostResource /* file_ref */, 715 ppapi::HostResource /* file_ref */,
706 PP_FileInfo /* info */, 716 PP_FileInfo /* info */,
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
1123 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1133 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1124 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1134 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1125 ppapi::HostResource /* video_decoder */, 1135 ppapi::HostResource /* video_decoder */,
1126 int32_t /* picture buffer id */) 1136 int32_t /* picture buffer id */)
1127 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1137 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1128 ppapi::HostResource /* video_decoder */) 1138 ppapi::HostResource /* video_decoder */)
1129 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1139 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1130 ppapi::HostResource /* video_decoder */) 1140 ppapi::HostResource /* video_decoder */)
1131 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1141 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1132 ppapi::HostResource /* video_decoder */) 1142 ppapi::HostResource /* video_decoder */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698