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

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

Issue 10163012: Move the FlashClipboard API into the Flash one. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments & fixes. Created 8 years, 8 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
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppb_flash_clipboard_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after
1134 ppapi::HostResource /* video_decoder */) 1134 ppapi::HostResource /* video_decoder */)
1135 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1135 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1136 ppapi::HostResource /* video_decoder */) 1136 ppapi::HostResource /* video_decoder */)
1137 1137
1138 // PPB_Flash. 1138 // PPB_Flash.
1139 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlash_SetInstanceAlwaysOnTop, 1139 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlash_SetInstanceAlwaysOnTop,
1140 PP_Instance /* instance */, 1140 PP_Instance /* instance */,
1141 PP_Bool /* on_top */) 1141 PP_Bool /* on_top */)
1142 // This has to be synchronous becuase the caller may want to composite on 1142 // This has to be synchronous becuase the caller may want to composite on
1143 // top of the resulting text after the call is complete. 1143 // top of the resulting text after the call is complete.
1144 IPC_SYNC_MESSAGE_ROUTED1_1( 1144 IPC_SYNC_MESSAGE_ROUTED2_1(
1145 PpapiHostMsg_PPBFlash_DrawGlyphs, 1145 PpapiHostMsg_PPBFlash_DrawGlyphs,
1146 PP_Instance /* instance */,
1146 ppapi::proxy::PPBFlash_DrawGlyphs_Params /* params */, 1147 ppapi::proxy::PPBFlash_DrawGlyphs_Params /* params */,
1147 PP_Bool /* result */) 1148 PP_Bool /* result */)
1148 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetProxyForURL, 1149 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetProxyForURL,
1149 PP_Instance /* instance */, 1150 PP_Instance /* instance */,
1150 std::string /* url */, 1151 std::string /* url */,
1151 ppapi::proxy::SerializedVar /* result */) 1152 ppapi::proxy::SerializedVar /* result */)
1152 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiHostMsg_PPBFlash_Navigate, 1153 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiHostMsg_PPBFlash_Navigate,
1153 PP_Instance /* instance */, 1154 PP_Instance /* instance */,
1154 ppapi::PPB_URLRequestInfo_Data /* request_data */, 1155 ppapi::PPB_URLRequestInfo_Data /* request_data */,
1155 std::string /* target */, 1156 std::string /* target */,
(...skipping 15 matching lines...) Expand all
1171 PP_Instance /* instance */, 1172 PP_Instance /* instance */,
1172 PP_Bool /* fullscreen */, 1173 PP_Bool /* fullscreen */,
1173 PP_Bool /* result */) 1174 PP_Bool /* result */)
1174 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlash_FlashGetScreenSize, 1175 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlash_FlashGetScreenSize,
1175 PP_Instance /* instance */, 1176 PP_Instance /* instance */,
1176 PP_Bool /* result */, 1177 PP_Bool /* result */,
1177 PP_Size /* size */) 1178 PP_Size /* size */)
1178 IPC_MESSAGE_ROUTED0(PpapiHostMsg_PPBFlash_UpdateActivity) 1179 IPC_MESSAGE_ROUTED0(PpapiHostMsg_PPBFlash_UpdateActivity)
1179 IPC_SYNC_MESSAGE_ROUTED0_1(PpapiHostMsg_PPBFlash_GetDeviceID, 1180 IPC_SYNC_MESSAGE_ROUTED0_1(PpapiHostMsg_PPBFlash_GetDeviceID,
1180 std::string /* id */) 1181 std::string /* id */)
1181 1182 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_IsClipboardFormatAvailable,
1182 // PPB_Flash_Clipboard.
1183 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_IsFormatAvailable,
1184 PP_Instance /* instance */, 1183 PP_Instance /* instance */,
1185 int /* clipboard_type */, 1184 int /* clipboard_type */,
1186 int /* format */, 1185 int /* format */,
1187 bool /* result */) 1186 bool /* result */)
1188 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlashClipboard_ReadData, 1187 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBFlash_ReadClipboardData,
1189 PP_Instance /* instance */, 1188 PP_Instance /* instance */,
1190 int /* clipboard_type */, 1189 int /* clipboard_type */,
1191 int /* format */, 1190 int /* format */,
1192 ppapi::proxy::SerializedVar /* result */) 1191 ppapi::proxy::SerializedVar /* result */)
1193 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlashClipboard_WriteData, 1192 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBFlash_WriteClipboardData,
1194 PP_Instance /* instance */, 1193 PP_Instance /* instance */,
1195 int /* clipboard_type */, 1194 int /* clipboard_type */,
1196 std::vector<int> /* formats */, 1195 std::vector<int> /* formats */,
1197 std::vector<ppapi::proxy::SerializedVar> /* data */) 1196 std::vector<ppapi::proxy::SerializedVar> /* data */)
1198 1197
1199 // PPB_Flash_File_FileRef. 1198 // PPB_Flash_File_FileRef.
1200 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile, 1199 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlashFile_FileRef_OpenFile,
1201 ppapi::HostResource /* file_ref */, 1200 ppapi::HostResource /* file_ref */,
1202 int32_t /* mode */, 1201 int32_t /* mode */,
1203 IPC::PlatformFileForTransit /* file_handle */, 1202 IPC::PlatformFileForTransit /* file_handle */,
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
1328 // PPB_X509Certificate_Private 1327 // PPB_X509Certificate_Private
1329 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, 1328 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER,
1330 std::vector<char> /* der */, 1329 std::vector<char> /* der */,
1331 bool /* succeeded */, 1330 bool /* succeeded */,
1332 ppapi::PPB_X509Certificate_Fields /* result */) 1331 ppapi::PPB_X509Certificate_Fields /* result */)
1333 1332
1334 // PPB_Font. 1333 // PPB_Font.
1335 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1334 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1336 std::string /* result */) 1335 std::string /* result */)
1337 #endif // !defined(OS_NACL) 1336 #endif // !defined(OS_NACL)
OLDNEW
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppb_flash_clipboard_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698