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

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

Issue 10535062: Add an asynchronous version of the Flash DeviceID API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppb_flash_device_id_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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_Construct, 394 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_Construct,
395 int64 /* ppp_class */, 395 int64 /* ppp_class */,
396 int64 /* object */, 396 int64 /* object */,
397 std::vector<ppapi::proxy::SerializedVar> /* args */, 397 std::vector<ppapi::proxy::SerializedVar> /* args */,
398 ppapi::proxy::SerializedVar /* out_exception */, 398 ppapi::proxy::SerializedVar /* out_exception */,
399 ppapi::proxy::SerializedVar /* result */) 399 ppapi::proxy::SerializedVar /* result */)
400 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPClass_Deallocate, 400 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPClass_Deallocate,
401 int64 /* ppp_class */, 401 int64 /* ppp_class */,
402 int64 /* object */) 402 int64 /* object */)
403 403
404 // PPB_Flash_DeviceID.
405 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBFlashDeviceID_GetReply,
406 int32 /* routing_id */,
407 PP_Resource /* resource */,
408 int32 /* result */,
409 std::string /* value */)
410
404 // PPP_Graphics3D_Dev. 411 // PPP_Graphics3D_Dev.
405 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPGraphics3D_ContextLost, 412 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPGraphics3D_ContextLost,
406 PP_Instance /* instance */) 413 PP_Instance /* instance */)
407 414
408 // PPP_InputEvent. 415 // PPP_InputEvent.
409 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInputEvent_HandleInputEvent, 416 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInputEvent_HandleInputEvent,
410 PP_Instance /* instance */, 417 PP_Instance /* instance */,
411 ppapi::InputEventData /* data */) 418 ppapi::InputEventData /* data */)
412 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInputEvent_HandleFilteredInputEvent, 419 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInputEvent_HandleFilteredInputEvent,
413 PP_Instance /* instance */, 420 PP_Instance /* instance */,
(...skipping 801 matching lines...) Expand 10 before | Expand all | Expand 10 after
1215 IPC::PlatformFileForTransit /* file_handle */, 1222 IPC::PlatformFileForTransit /* file_handle */,
1216 int32_t /* result */) 1223 int32_t /* result */)
1217 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryFileRef, 1224 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBFlash_QueryFileRef,
1218 PP_Instance /* instance */, 1225 PP_Instance /* instance */,
1219 ppapi::HostResource /* file_ref */, 1226 ppapi::HostResource /* file_ref */,
1220 PP_FileInfo /* info */, 1227 PP_FileInfo /* info */,
1221 int32_t /* result */) 1228 int32_t /* result */)
1222 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBFlash_InvokePrinting, 1229 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBFlash_InvokePrinting,
1223 PP_Instance /* instance */) 1230 PP_Instance /* instance */)
1224 1231
1232 // PPB_Flash_DeviceID.
1233 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBFlashDeviceID_Get,
1234 int32 /* routing_id */,
1235 PP_Resource /* resource */)
1236
1225 // PPB_Flash_Menu 1237 // PPB_Flash_Menu
1226 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashMenu_Create, 1238 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlashMenu_Create,
1227 PP_Instance /* instance */, 1239 PP_Instance /* instance */,
1228 ppapi::proxy::SerializedFlashMenu /* menu_data */, 1240 ppapi::proxy::SerializedFlashMenu /* menu_data */,
1229 ppapi::HostResource /* result */) 1241 ppapi::HostResource /* result */)
1230 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBFlashMenu_Show, 1242 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBFlashMenu_Show,
1231 ppapi::HostResource /* menu */, 1243 ppapi::HostResource /* menu */,
1232 PP_Point /* location */) 1244 PP_Point /* location */)
1233 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBFlashMenu_ShowACK, 1245 IPC_MESSAGE_ROUTED3(PpapiMsg_PPBFlashMenu_ShowACK,
1234 ppapi::HostResource /* menu */, 1246 ppapi::HostResource /* menu */,
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
1309 // PPB_X509Certificate_Private 1321 // PPB_X509Certificate_Private
1310 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, 1322 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER,
1311 std::vector<char> /* der */, 1323 std::vector<char> /* der */,
1312 bool /* succeeded */, 1324 bool /* succeeded */,
1313 ppapi::PPB_X509Certificate_Fields /* result */) 1325 ppapi::PPB_X509Certificate_Fields /* result */)
1314 1326
1315 // PPB_Font. 1327 // PPB_Font.
1316 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1328 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1317 std::string /* result */) 1329 std::string /* result */)
1318 #endif // !defined(OS_NACL) 1330 #endif // !defined(OS_NACL)
OLDNEW
« no previous file with comments | « ppapi/proxy/interface_list.cc ('k') | ppapi/proxy/ppb_flash_device_id_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698