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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppp_instance_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/plugin_ppp_instance_rpc_server.cc
===================================================================
--- ppapi/native_client/src/shared/ppapi_proxy/plugin_ppp_instance_rpc_server.cc (revision 107024)
+++ ppapi/native_client/src/shared/ppapi_proxy/plugin_ppp_instance_rpc_server.cc (working copy)
@@ -115,7 +115,8 @@
// inputs
PP_Instance instance_id,
uint32_t position_count, int32_t* position,
- uint32_t clip_count, int32_t* clip) {
+ uint32_t clip_count, int32_t* clip,
+ int32_t is_fullscreen) {
const PP_Rect position_rect =
PP_MakeRectFromXYWH(position[0], position[1], position[2], position[3]);
const PP_Rect clip_rect =
@@ -123,7 +124,8 @@
ppapi_proxy::PluginInstanceData::DidChangeView(instance_id,
position_rect,
- clip_rect);
+ clip_rect,
+ is_fullscreen);
rpc->result = NACL_SRPC_RESULT_APP_ERROR;
NaClSrpcClosureRunner runner(done);
if (position_count != 4 || clip_count != 4) {

Powered by Google App Engine
This is Rietveld 408576698