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

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

Issue 9253011: Pepper SRPC proxy style and type nits (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bad license to pass presubmit check Created 8 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_widget_rpc_server.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_widget_rpc_server.cc b/ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_widget_rpc_server.cc
index 65eb11457557cd09053f8d8c6eaba90846ab39e6..b08327be85e40f3b1f4d33ea5237d1978858b002 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_widget_rpc_server.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_widget_rpc_server.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
@@ -28,9 +28,9 @@ void PpbWidgetRpcServer::PPB_Widget_IsWidget(
rpc->result = NACL_SRPC_RESULT_APP_ERROR;
PP_Bool pp_is_widget = PPBWidgetInterface()->IsWidget(resource);
- *is_widget = (pp_is_widget == PP_TRUE);
+ *is_widget = PP_ToBool(pp_is_widget);
- DebugPrintf("PPB_Widget::Widget: resource=%"NACL_PRIu32"\n",
+ DebugPrintf("PPB_Widget::Widget: resource=%"NACL_PRId32"\n",
resource);
rpc->result = NACL_SRPC_RESULT_OK;
}
@@ -50,7 +50,7 @@ void PpbWidgetRpcServer::PPB_Widget_Paint(
struct PP_Rect* pp_rect = reinterpret_cast<struct PP_Rect*>(rect);
*success = PPBWidgetInterface()->Paint(widget, pp_rect, image);
- DebugPrintf("PPB_Widget::Paint: widget=%"NACL_PRIu32"\n",
+ DebugPrintf("PPB_Widget::Paint: widget=%"NACL_PRId32"\n",
widget);
rpc->result = NACL_SRPC_RESULT_OK;
}
@@ -66,7 +66,7 @@ void PpbWidgetRpcServer::PPB_Widget_HandleEvent(
*handled = PPBWidgetInterface()->HandleEvent(widget, pp_event);
- DebugPrintf("PPB_Widget::HandleEvent: widget=%"NACL_PRIu32"\n",
+ DebugPrintf("PPB_Widget::HandleEvent: widget=%"NACL_PRId32"\n",
widget);
rpc->result = NACL_SRPC_RESULT_OK;
}
@@ -85,7 +85,7 @@ void PpbWidgetRpcServer::PPB_Widget_GetLocation(
struct PP_Rect* pp_rect = reinterpret_cast<struct PP_Rect*>(rect);
*visible = PPBWidgetInterface()->GetLocation(widget, pp_rect);
- DebugPrintf("PPB_Widget::GetLocation: widget=%"NACL_PRIu32"\n",
+ DebugPrintf("PPB_Widget::GetLocation: widget=%"NACL_PRId32"\n",
widget);
rpc->result = NACL_SRPC_RESULT_OK;
}
@@ -103,8 +103,7 @@ void PpbWidgetRpcServer::PPB_Widget_SetLocation(
struct PP_Rect* pp_rect = reinterpret_cast<struct PP_Rect*>(rect);
PPBWidgetInterface()->SetLocation(widget, pp_rect);
- DebugPrintf("PPB_Widget::SetLocation: widget=%"NACL_PRIu32"\n",
+ DebugPrintf("PPB_Widget::SetLocation: widget=%"NACL_PRId32"\n",
widget);
rpc->result = NACL_SRPC_RESULT_OK;
}
-

Powered by Google App Engine
This is Rietveld 408576698