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

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

Issue 5828003: Move the Pepper implementation from webkit/glue/plugins/pepper_* to... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « ppapi/proxy/dispatcher.cc ('k') | ppapi/proxy/ppb_flash_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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "ipc/ipc_message_macros.h" 5 #include "ipc/ipc_message_macros.h"
6 #include "ppapi/c/dev/pp_file_info_dev.h" 6 #include "ppapi/c/dev/pp_file_info_dev.h"
7 #include "ppapi/c/ppb_var.h" 7 #include "ppapi/c/ppb_var.h"
8 8
9 #define IPC_MESSAGE_START PpapiMsgStart 9 #define IPC_MESSAGE_START PpapiMsgStart
10 10
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_IsFullFrame, 370 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_IsFullFrame,
371 PP_Instance /* instance */, 371 PP_Instance /* instance */,
372 PP_Bool /* result */) 372 PP_Bool /* result */)
373 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBInstance_ExecuteScript, 373 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBInstance_ExecuteScript,
374 PP_Instance /* instance */, 374 PP_Instance /* instance */,
375 pp::proxy::SerializedVar /* script */, 375 pp::proxy::SerializedVar /* script */,
376 pp::proxy::SerializedVar /* out_exception */, 376 pp::proxy::SerializedVar /* out_exception */,
377 pp::proxy::SerializedVar /* result */) 377 pp::proxy::SerializedVar /* result */)
378 378
379 IPC_SYNC_MESSAGE_ROUTED3_1( 379 IPC_SYNC_MESSAGE_ROUTED3_1(
380 PpapiHostMsg_PPBPdf_GetFontFileWithFallback, 380 PpapiHostMsg_PPBPDF_GetFontFileWithFallback,
381 PP_Module /* module */, 381 PP_Module /* module */,
382 pp::proxy::SerializedFontDescription /* description */, 382 pp::proxy::SerializedFontDescription /* description */,
383 int32_t /* charset */, 383 int32_t /* charset */,
384 PP_Resource /* result */) 384 PP_Resource /* result */)
385 IPC_SYNC_MESSAGE_ROUTED2_1( 385 IPC_SYNC_MESSAGE_ROUTED2_1(
386 PpapiHostMsg_PPBPdf_GetFontTableForPrivateFontFile, 386 PpapiHostMsg_PPBPDF_GetFontTableForPrivateFontFile,
387 PP_Resource /* font_file */, 387 PP_Resource /* font_file */,
388 uint32_t /* table */, 388 uint32_t /* table */,
389 std::string /* result */) 389 std::string /* result */)
390 390
391 // PPB_Testing. 391 // PPB_Testing.
392 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBTesting_ReadImageData, 392 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBTesting_ReadImageData,
393 PP_Resource /* device_context_2d */, 393 PP_Resource /* device_context_2d */,
394 PP_Resource /* image */, 394 PP_Resource /* image */,
395 PP_Point /* top_left */, 395 PP_Point /* top_left */,
396 PP_Bool /* result */) 396 PP_Bool /* result */)
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, 523 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated,
524 pp::proxy::SerializedVar /* var */, 524 pp::proxy::SerializedVar /* var */,
525 int64 /* object_class */, 525 int64 /* object_class */,
526 int64 /* object-data */, 526 int64 /* object-data */,
527 PP_Bool /* result */) 527 PP_Bool /* result */)
528 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, 528 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated,
529 PP_Module /* module */, 529 PP_Module /* module */,
530 int64 /* object_class */, 530 int64 /* object_class */,
531 int64 /* object_data */, 531 int64 /* object_data */,
532 pp::proxy::SerializedVar /* result */) 532 pp::proxy::SerializedVar /* result */)
OLDNEW
« no previous file with comments | « ppapi/proxy/dispatcher.cc ('k') | ppapi/proxy/ppb_flash_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698