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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_url_response_info.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_url_response_info.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_url_response_info.cc b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_url_response_info.cc
index 0a557dfa03d56debc7b6674bc98c1154d52d8bb8..8a1948563cb04a00f491c8e0ba2cad9b29425f3b 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_url_response_info.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_url_response_info.cc
@@ -21,7 +21,7 @@ namespace ppapi_proxy {
namespace {
PP_Bool IsURLResponseInfo(PP_Resource resource) {
- DebugPrintf("PPB_URLResponseInfo::IsURLResponseInfo: resource=%"NACL_PRIu32
+ DebugPrintf("PPB_URLResponseInfo::IsURLResponseInfo: resource=%"NACL_PRId32
"\n", resource);
int32_t success;
@@ -37,7 +37,7 @@ PP_Bool IsURLResponseInfo(PP_Resource resource) {
}
PP_Var GetProperty(PP_Resource response, PP_URLResponseProperty property) {
- DebugPrintf("PPB_URLResponseInfo::GetProperty: response=%"NACL_PRIu32"\n",
+ DebugPrintf("PPB_URLResponseInfo::GetProperty: response=%"NACL_PRId32"\n",
response);
NaClSrpcChannel* channel = GetMainSrpcChannel();
@@ -61,7 +61,7 @@ PP_Var GetProperty(PP_Resource response, PP_URLResponseProperty property) {
}
PP_Resource GetBodyAsFileRef(PP_Resource response) {
- DebugPrintf("PPB_URLResponseInfo::GetBodyAsFileRef: response=%"NACL_PRIu32
+ DebugPrintf("PPB_URLResponseInfo::GetBodyAsFileRef: response=%"NACL_PRId32
"\n", response);
PP_Resource file_ref;

Powered by Google App Engine
This is Rietveld 408576698