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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_server.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_server.cc
===================================================================
--- ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_server.cc (revision 107024)
+++ ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_server.cc (working copy)
@@ -207,7 +207,8 @@
done,
inputs[0]->u.ival,
inputs[1]->u.count, inputs[1]->arrays.iarr,
- inputs[2]->u.count, inputs[2]->arrays.iarr
+ inputs[2]->u.count, inputs[2]->arrays.iarr,
+ inputs[3]->u.ival
);
}
@@ -436,7 +437,7 @@
{ "PPP_InputEvent_HandleInputEvent:iiCC:i", PPP_InputEvent_HandleInputEventDispatcher },
{ "PPP_Instance_DidCreate:iiCC:i", PPP_Instance_DidCreateDispatcher },
{ "PPP_Instance_DidDestroy:i:", PPP_Instance_DidDestroyDispatcher },
- { "PPP_Instance_DidChangeView:iII:", PPP_Instance_DidChangeViewDispatcher },
+ { "PPP_Instance_DidChangeView:iIIi:", PPP_Instance_DidChangeViewDispatcher },
{ "PPP_Instance_DidChangeFocus:ib:", PPP_Instance_DidChangeFocusDispatcher },
{ "PPP_Instance_HandleDocumentLoad:ii:i", PPP_Instance_HandleDocumentLoadDispatcher },
{ "PPP_Messaging_HandleMessage:iC:", PPP_Messaging_HandleMessageDispatcher },

Powered by Google App Engine
This is Rietveld 408576698