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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_widget.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/plugin_ppb_widget.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_widget.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_widget.cc
index b12c07d42b76f724b0a302e8544be0a5cad11094..e03965ca6cae5c17629bacfb591d2a1e0fd2982d 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_widget.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_widget.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.
@@ -24,7 +24,7 @@ const nacl_abi_size_t kPPRectBytes =
PP_Bool IsWidget(PP_Resource resource) {
DebugPrintf("PPB_Widget::IsWidget: "
- "resource=%"NACL_PRIu32"\n", resource);
+ "resource=%"NACL_PRId32"\n", resource);
int32_t is_widget = 0;
NaClSrpcError srpc_result =
@@ -46,7 +46,7 @@ PP_Bool Paint(
const struct PP_Rect* rect,
PP_Resource image) {
DebugPrintf("PPB_Widget::Paint: "
- "widget=%"NACL_PRIu32"\n", widget);
+ "widget=%"NACL_PRId32"\n", widget);
int32_t success = 0;
NaClSrpcError srpc_result =
@@ -90,7 +90,7 @@ PP_Bool GetLocation(
PP_Resource widget,
struct PP_Rect* location) {
DebugPrintf("PPB_Widget::GetLocation: "
- "widget=%"NACL_PRIu32"\n", widget);
+ "widget=%"NACL_PRId32"\n", widget);
int32_t visible = 0;
nacl_abi_size_t location_size = kPPRectBytes;
@@ -115,7 +115,7 @@ void SetLocation(
PP_Resource widget,
const struct PP_Rect* location) {
DebugPrintf("PPB_Widget::SetLocation: "
- "widget=%"NACL_PRIu32"\n", widget);
+ "widget=%"NACL_PRId32"\n", widget);
NaClSrpcError srpc_result =
PpbWidgetRpcClient::PPB_Widget_SetLocation(
@@ -142,4 +142,3 @@ const PPB_Widget_Dev* PluginWidget::GetInterface() {
}
} // namespace ppapi_proxy
-

Powered by Google App Engine
This is Rietveld 408576698