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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_client.cc

Issue 8351023: PPAPI NaCl Proxy: optimize PPB_Fullscreen::IsFullscreen. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_client.cc
===================================================================
--- ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_client.cc (revision 107024)
+++ ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_client.cc (working copy)
@@ -216,14 +216,16 @@
NaClSrpcChannel* channel,
PP_Instance instance,
nacl_abi_size_t position_bytes, int32_t* position,
- nacl_abi_size_t clip_bytes, int32_t* clip) {
+ nacl_abi_size_t clip_bytes, int32_t* clip,
+ int32_t is_fullscreen) {
NaClSrpcError retval;
retval = NaClSrpcInvokeBySignature(
channel,
- "PPP_Instance_DidChangeView:iII:",
+ "PPP_Instance_DidChangeView:iIIi:",
instance,
position_bytes, position,
- clip_bytes, clip
+ clip_bytes, clip,
+ is_fullscreen
);
if (retval == NACL_SRPC_RESULT_INTERNAL)
ppapi_proxy::CleanUpAfterDeadNexe(instance);

Powered by Google App Engine
This is Rietveld 408576698