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

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

Issue 6694011: Run PPB_CharSet_Dev logic directly in the plugin process. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 9 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/ppapi_shared_proxy.gypi ('k') | ppapi/proxy/ppb_char_set_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) 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 #include "gpu/command_buffer/common/command_buffer.h" 5 #include "gpu/command_buffer/common/command_buffer.h"
6 #include "gpu/ipc/gpu_command_buffer_traits.h" 6 #include "gpu/ipc/gpu_command_buffer_traits.h"
7 #include "ipc/ipc_message_macros.h" 7 #include "ipc/ipc_message_macros.h"
8 #include "ppapi/c/dev/pp_file_info_dev.h" 8 #include "ppapi/c/dev/pp_file_info_dev.h"
9 #include "ppapi/c/ppb_var.h" 9 #include "ppapi/c/ppb_var.h"
10 10
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 base::SharedMemoryHandle /* transfer_buffer */, 273 base::SharedMemoryHandle /* transfer_buffer */,
274 uint32 /* size */) 274 uint32 /* size */)
275 275
276 // PPB_Core. 276 // PPB_Core.
277 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource, 277 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_AddRefResource,
278 pp::proxy::HostResource) 278 pp::proxy::HostResource)
279 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource, 279 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBCore_ReleaseResource,
280 pp::proxy::HostResource) 280 pp::proxy::HostResource)
281 281
282 // PPB_CharSet. 282 // PPB_CharSet.
283 IPC_SYNC_MESSAGE_ROUTED4_2(PpapiHostMsg_PPBCharSet_UTF16ToCharSet,
284 PP_Instance /* instance */,
285 string16 /* utf16 */,
286 std::string /* char_set */,
287 int32_t /* on_error */,
288 std::string /* output */,
289 bool /* output_is_success */)
290 IPC_SYNC_MESSAGE_ROUTED4_2(PpapiHostMsg_PPBCharSet_CharSetToUTF16,
291 PP_Instance /* instance */,
292 std::string /* input */,
293 std::string /* char_set */,
294 int32_t /* on_error */,
295 string16 /* output */,
296 bool /* output_is_success */)
297 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCharSet_GetDefaultCharSet, 283 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBCharSet_GetDefaultCharSet,
298 PP_Instance /* instance */, 284 PP_Instance /* instance */,
299 pp::proxy::SerializedVar /* result */) 285 pp::proxy::SerializedVar /* result */)
300 286
301 // PPB_CursorControl. 287 // PPB_CursorControl.
302 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiHostMsg_PPBCursorControl_SetCursor, 288 IPC_SYNC_MESSAGE_ROUTED4_1(PpapiHostMsg_PPBCursorControl_SetCursor,
303 PP_Instance /* instance */, 289 PP_Instance /* instance */,
304 int32_t /* type */, 290 int32_t /* type */,
305 pp::proxy::HostResource /* custom_image */, 291 pp::proxy::HostResource /* custom_image */,
306 PP_Point /* hot_spot */, 292 PP_Point /* hot_spot */,
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
712 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, 698 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated,
713 pp::proxy::SerializedVar /* var */, 699 pp::proxy::SerializedVar /* var */,
714 int64 /* object_class */, 700 int64 /* object_class */,
715 int64 /* object-data */, 701 int64 /* object-data */,
716 PP_Bool /* result */) 702 PP_Bool /* result */)
717 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, 703 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated,
718 PP_Instance /* instance */, 704 PP_Instance /* instance */,
719 int64 /* object_class */, 705 int64 /* object_class */,
720 int64 /* object_data */, 706 int64 /* object_data */,
721 pp::proxy::SerializedVar /* result */) 707 pp::proxy::SerializedVar /* result */)
OLDNEW
« no previous file with comments | « ppapi/ppapi_shared_proxy.gypi ('k') | ppapi/proxy/ppb_char_set_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698