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

Side by Side Diff: src/shared/ppapi_proxy/ppp_rpc_server.cc

Issue 6177007: ppapi_proxy: Support loading and reading urls. Proxy URLLoader.... (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 11 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) 2010 The Native Client Authors. All rights reserved. 1 // Copyright (c) 2010 The Native Client 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 // WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING 5 // WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
6 // 6 //
7 // Automatically generated code. See srpcgen.py 7 // Automatically generated code. See srpcgen.py
8 // 8 //
9 // NaCl Simple Remote Procedure Call interface abstractions. 9 // NaCl Simple Remote Procedure Call interface abstractions.
10 10
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 NaClSrpcRpc* rpc, 179 NaClSrpcRpc* rpc,
180 NaClSrpcArg** inputs, 180 NaClSrpcArg** inputs,
181 NaClSrpcArg** outputs, 181 NaClSrpcArg** outputs,
182 NaClSrpcClosure* done 182 NaClSrpcClosure* done
183 ) { 183 ) {
184 UNREFERENCED_PARAMETER(outputs); 184 UNREFERENCED_PARAMETER(outputs);
185 CompletionCallbackRpcServer::RunCompletionCallback( 185 CompletionCallbackRpcServer::RunCompletionCallback(
186 rpc, 186 rpc,
187 done, 187 done,
188 inputs[0]->u.ival, 188 inputs[0]->u.ival,
189 inputs[1]->u.ival 189 inputs[1]->u.ival,
190 inputs[2]->u.count, inputs[2]->arrays.carr
190 ); 191 );
191 } 192 }
192 193
193 static void PPP_InitializeModuleDispatcher( 194 static void PPP_InitializeModuleDispatcher(
194 NaClSrpcRpc* rpc, 195 NaClSrpcRpc* rpc,
195 NaClSrpcArg** inputs, 196 NaClSrpcArg** inputs,
196 NaClSrpcArg** outputs, 197 NaClSrpcArg** outputs,
197 NaClSrpcClosure* done 198 NaClSrpcClosure* done
198 ) { 199 ) {
199 PppRpcServer::PPP_InitializeModule( 200 PppRpcServer::PPP_InitializeModule(
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 NaClSrpcHandlerDesc PppRpcs::srpc_methods[] = { 365 NaClSrpcHandlerDesc PppRpcs::srpc_methods[] = {
365 { "HasProperty:CCC:iC", HasPropertyDispatcher }, 366 { "HasProperty:CCC:iC", HasPropertyDispatcher },
366 { "HasMethod:CCC:iC", HasMethodDispatcher }, 367 { "HasMethod:CCC:iC", HasMethodDispatcher },
367 { "GetProperty:CCC:CC", GetPropertyDispatcher }, 368 { "GetProperty:CCC:CC", GetPropertyDispatcher },
368 { "GetAllPropertyNames:CC:iCC", GetAllPropertyNamesDispatcher }, 369 { "GetAllPropertyNames:CC:iCC", GetAllPropertyNamesDispatcher },
369 { "SetProperty:CCCC:C", SetPropertyDispatcher }, 370 { "SetProperty:CCCC:C", SetPropertyDispatcher },
370 { "RemoveProperty:CCC:C", RemovePropertyDispatcher }, 371 { "RemoveProperty:CCC:C", RemovePropertyDispatcher },
371 { "Call:CCiCC:CC", CallDispatcher }, 372 { "Call:CCiCC:CC", CallDispatcher },
372 { "Construct:CiCC:CC", ConstructDispatcher }, 373 { "Construct:CiCC:CC", ConstructDispatcher },
373 { "Deallocate:C:", DeallocateDispatcher }, 374 { "Deallocate:C:", DeallocateDispatcher },
374 { "RunCompletionCallback:ii:", RunCompletionCallbackDispatcher }, 375 { "RunCompletionCallback:iiC:", RunCompletionCallbackDispatcher },
375 { "PPP_InitializeModule:ilhs:ii", PPP_InitializeModuleDispatcher }, 376 { "PPP_InitializeModule:ilhs:ii", PPP_InitializeModuleDispatcher },
376 { "PPP_ShutdownModule::", PPP_ShutdownModuleDispatcher }, 377 { "PPP_ShutdownModule::", PPP_ShutdownModuleDispatcher },
377 { "PPP_GetInterface:s:i", PPP_GetInterfaceDispatcher }, 378 { "PPP_GetInterface:s:i", PPP_GetInterfaceDispatcher },
378 { "PPP_Audio_Dev_StreamCreated:lhih:", PPP_Audio_Dev_StreamCreatedDispatcher } , 379 { "PPP_Audio_Dev_StreamCreated:lhih:", PPP_Audio_Dev_StreamCreatedDispatcher } ,
379 { "PPP_Instance_DidCreate:liCC:i", PPP_Instance_DidCreateDispatcher }, 380 { "PPP_Instance_DidCreate:liCC:i", PPP_Instance_DidCreateDispatcher },
380 { "PPP_Instance_DidDestroy:l:", PPP_Instance_DidDestroyDispatcher }, 381 { "PPP_Instance_DidDestroy:l:", PPP_Instance_DidDestroyDispatcher },
381 { "PPP_Instance_DidChangeView:lII:", PPP_Instance_DidChangeViewDispatcher }, 382 { "PPP_Instance_DidChangeView:lII:", PPP_Instance_DidChangeViewDispatcher },
382 { "PPP_Instance_DidChangeFocus:lb:", PPP_Instance_DidChangeFocusDispatcher }, 383 { "PPP_Instance_DidChangeFocus:lb:", PPP_Instance_DidChangeFocusDispatcher },
383 { "PPP_Instance_HandleInputEvent:lC:i", PPP_Instance_HandleInputEventDispatche r }, 384 { "PPP_Instance_HandleInputEvent:lC:i", PPP_Instance_HandleInputEventDispatche r },
384 { "PPP_Instance_HandleDocumentLoad:ll:i", PPP_Instance_HandleDocumentLoadDispa tcher }, 385 { "PPP_Instance_HandleDocumentLoad:ll:i", PPP_Instance_HandleDocumentLoadDispa tcher },
385 { "PPP_Instance_GetInstanceObject:l:C", PPP_Instance_GetInstanceObjectDispatch er }, 386 { "PPP_Instance_GetInstanceObject:l:C", PPP_Instance_GetInstanceObjectDispatch er },
386 { NULL, NULL } 387 { NULL, NULL }
387 }; 388 };
388 389
OLDNEW
« no previous file with comments | « src/shared/ppapi_proxy/ppp_rpc_client.cc ('k') | src/shared/ppapi_proxy/trusted/srpcgen/ppb_rpc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698