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

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

Issue 6833002: Implemented PPB_Broker_Proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup Created 9 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
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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 PP_Instance /* instance */, 227 PP_Instance /* instance */,
228 int32_t /* sample_rate */, 228 int32_t /* sample_rate */,
229 uint32_t /* sample_frame_count */, 229 uint32_t /* sample_frame_count */,
230 pp::proxy::HostResource /* result */) 230 pp::proxy::HostResource /* result */)
231 IPC_SYNC_MESSAGE_ROUTED2_1( 231 IPC_SYNC_MESSAGE_ROUTED2_1(
232 PpapiHostMsg_PPBAudioConfig_RecommendSampleFrameCount, 232 PpapiHostMsg_PPBAudioConfig_RecommendSampleFrameCount,
233 int32_t /* sample_rate */, 233 int32_t /* sample_rate */,
234 uint32_t /* requested */, 234 uint32_t /* requested */,
235 uint32_t /* result */) 235 uint32_t /* result */)
236 236
237 // PPB_Broker.
238 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBBroker_Create,
239 PP_Instance /* instance */,
240 pp::proxy::HostResource /* result_resource */)
241 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBBroker_Connect,
242 pp::proxy::HostResource /* broker */,
243 uint32_t /* serialized_callback */)
244 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBBroker_GetHandle,
245 pp::proxy::HostResource /* broker */,
246 IPC::PlatformFileForTransit /* handle */,
247 int32_t /* result */)
248
237 // PPB_Buffer. 249 // PPB_Buffer.
238 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create, 250 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBBuffer_Create,
239 PP_Instance /* instance */, 251 PP_Instance /* instance */,
240 uint32_t /* size */, 252 uint32_t /* size */,
241 pp::proxy::HostResource /* result_resource */, 253 pp::proxy::HostResource /* result_resource */,
242 int32_t /* result_shm_handle */) 254 int32_t /* result_shm_handle */)
243 255
244 // PPB_Console. 256 // PPB_Console.
245 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBConsole_Log, 257 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBConsole_Log,
246 PP_Instance /* instance */, 258 PP_Instance /* instance */,
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated, 757 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBVar_IsInstanceOfDeprecated,
746 pp::proxy::SerializedVar /* var */, 758 pp::proxy::SerializedVar /* var */,
747 int64 /* object_class */, 759 int64 /* object_class */,
748 int64 /* object-data */, 760 int64 /* object-data */,
749 PP_Bool /* result */) 761 PP_Bool /* result */)
750 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated, 762 IPC_SYNC_MESSAGE_ROUTED3_1(PpapiHostMsg_PPBVar_CreateObjectDeprecated,
751 PP_Instance /* instance */, 763 PP_Instance /* instance */,
752 int64 /* object_class */, 764 int64 /* object_class */,
753 int64 /* object_data */, 765 int64 /* object_data */,
754 pp::proxy::SerializedVar /* result */) 766 pp::proxy::SerializedVar /* result */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698