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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/ppb_rpc_client.cc

Issue 9566022: Rename NaCl/pepper gamepad interface from _dev to stable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 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
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 // 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 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after
1189 retval = NaClSrpcInvokeBySignature( 1189 retval = NaClSrpcInvokeBySignature(
1190 channel, 1190 channel,
1191 "PPB_Fullscreen_GetScreenSize:i:Ci", 1191 "PPB_Fullscreen_GetScreenSize:i:Ci",
1192 instance, 1192 instance,
1193 size_bytes, size, 1193 size_bytes, size,
1194 success 1194 success
1195 ); 1195 );
1196 return retval; 1196 return retval;
1197 } 1197 }
1198 1198
1199 NaClSrpcError PpbGamepadRpcClient::PPB_Gamepad_SampleGamepads( 1199 NaClSrpcError PpbGamepadRpcClient::PPB_Gamepad_Sample(
1200 NaClSrpcChannel* channel, 1200 NaClSrpcChannel* channel,
1201 PP_Instance instance, 1201 PP_Instance instance,
1202 nacl_abi_size_t* data_bytes, char* data) { 1202 nacl_abi_size_t* data_bytes, char* data) {
1203 VCHECK(ppapi_proxy::PPBCoreInterface()->IsMainThread(), 1203 VCHECK(ppapi_proxy::PPBCoreInterface()->IsMainThread(),
1204 ("%s: PPAPI calls are not supported off the main thread\n", 1204 ("%s: PPAPI calls are not supported off the main thread\n",
1205 __FUNCTION__)); 1205 __FUNCTION__));
1206 NaClSrpcError retval; 1206 NaClSrpcError retval;
1207 retval = NaClSrpcInvokeBySignature( 1207 retval = NaClSrpcInvokeBySignature(
1208 channel, 1208 channel,
1209 "PPB_Gamepad_SampleGamepads:i:C", 1209 "PPB_Gamepad_Sample:i:C",
1210 instance, 1210 instance,
1211 data_bytes, data 1211 data_bytes, data
1212 ); 1212 );
1213 return retval; 1213 return retval;
1214 } 1214 }
1215 1215
1216 NaClSrpcError PpbGraphics2DRpcClient::PPB_Graphics2D_Create( 1216 NaClSrpcError PpbGraphics2DRpcClient::PPB_Graphics2D_Create(
1217 NaClSrpcChannel* channel, 1217 NaClSrpcChannel* channel,
1218 PP_Instance instance, 1218 PP_Instance instance,
1219 nacl_abi_size_t size_bytes, char* size, 1219 nacl_abi_size_t size_bytes, char* size,
(...skipping 2544 matching lines...) Expand 10 before | Expand all | Expand 10 after
3764 channel, 3764 channel,
3765 "PPB_Zoom_ZoomLimitsChanged:idd:", 3765 "PPB_Zoom_ZoomLimitsChanged:idd:",
3766 instance, 3766 instance,
3767 minimum_factor, 3767 minimum_factor,
3768 maximum_factor 3768 maximum_factor
3769 ); 3769 );
3770 return retval; 3770 return retval;
3771 } 3771 }
3772 3772
3773 3773
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698