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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_scrollbar.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_ppp_scrollbar.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_scrollbar.cc b/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_scrollbar.cc
index 66b8aa2502865e5d0df7b0e0a75d956281c55bd1..f81f5f7a372e76385948d16a205179ca8a9ad668 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_scrollbar.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/browser_ppp_scrollbar.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.
@@ -23,7 +23,7 @@ void ValueChanged(
PP_Instance instance,
PP_Resource resource,
uint32_t value) {
- DebugPrintf("PPP_Scrollbar_Dev::ValueChanged: instance=%"NACL_PRIu32"\n",
+ DebugPrintf("PPP_Scrollbar_Dev::ValueChanged: instance=%"NACL_PRId32"\n",
instance);
NaClSrpcError srpc_result = PppScrollbarRpcClient::PPP_Scrollbar_ValueChanged(
@@ -40,7 +40,7 @@ void OverlayChanged(
PP_Instance instance,
PP_Resource resource,
PP_Bool type) {
- DebugPrintf("PPP_Scrollbar_Dev::OverlayChanged: instance=%"NACL_PRIu32"\n",
+ DebugPrintf("PPP_Scrollbar_Dev::OverlayChanged: instance=%"NACL_PRId32"\n",
instance);
NaClSrpcError srpc_result =
@@ -65,4 +65,3 @@ const PPP_Scrollbar_Dev* BrowserScrollbar::GetInterface() {
}
} // namespace ppapi_proxy
-

Powered by Google App Engine
This is Rietveld 408576698