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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_cursor_control.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_cursor_control.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_cursor_control.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_cursor_control.cc
index ebb88724e4e6eb3ae5f6b5ad85cd0a8ce300b370..a36c9923615274530f50d22991a7971fc140f06f 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_cursor_control.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_cursor_control.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.
@@ -25,7 +25,7 @@ PP_Bool SetCursor(PP_Instance instance,
PP_Resource custom_image,
const struct PP_Point* hot_spot) {
DebugPrintf("PPB_CursorControl::SetCursor: "
- "instance=%"NACL_PRIu32"\n", instance);
+ "instance=%"NACL_PRId32"\n", instance);
int32_t hot_spot_size = (hot_spot != NULL) ? kPPPointBytes : 0;
int32_t success = 0;
@@ -48,7 +48,7 @@ PP_Bool SetCursor(PP_Instance instance,
PP_Bool LockCursor(PP_Instance instance) {
DebugPrintf("PPB_CursorControl::LockCursor: "
- "instance=%"NACL_PRIu32"\n", instance);
+ "instance=%"NACL_PRId32"\n", instance);
int32_t success = 0;
NaClSrpcError srpc_result =
@@ -67,7 +67,7 @@ PP_Bool LockCursor(PP_Instance instance) {
PP_Bool UnlockCursor(PP_Instance instance) {
DebugPrintf("PPB_CursorControl::UnlockCursor: "
- "instance=%"NACL_PRIu32"\n", instance);
+ "instance=%"NACL_PRId32"\n", instance);
int32_t success = 0;
NaClSrpcError srpc_result =
@@ -86,7 +86,7 @@ PP_Bool UnlockCursor(PP_Instance instance) {
PP_Bool HasCursorLock(PP_Instance instance) {
DebugPrintf("PPB_CursorControl::HasCursorLock: "
- "instance=%"NACL_PRIu32"\n", instance);
+ "instance=%"NACL_PRId32"\n", instance);
int32_t success = 0;
NaClSrpcError srpc_result =
@@ -105,7 +105,7 @@ PP_Bool HasCursorLock(PP_Instance instance) {
PP_Bool CanLockCursor(PP_Instance instance) {
DebugPrintf("PPB_CursorControl::CanLockCursor: "
- "instance=%"NACL_PRIu32"\n", instance);
+ "instance=%"NACL_PRId32"\n", instance);
int32_t success = 0;
NaClSrpcError srpc_result =
@@ -136,5 +136,3 @@ const PPB_CursorControl_Dev* PluginCursorControl::GetInterface() {
}
} // namespace ppapi_proxy
-
-

Powered by Google App Engine
This is Rietveld 408576698