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

Unified Diff: tests/fake_browser_ppapi/fake_file_io_trusted.cc

Issue 6218004: Resource64->32, NaCl side. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: First Created 9 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: tests/fake_browser_ppapi/fake_file_io_trusted.cc
diff --git a/tests/fake_browser_ppapi/fake_file_io_trusted.cc b/tests/fake_browser_ppapi/fake_file_io_trusted.cc
index 239804182667ef59fc343acfd1d49972a64cd9b4..d1282e96e20ab9426e7934f07fa8af901b53e4fa 100644
--- a/tests/fake_browser_ppapi/fake_file_io_trusted.cc
+++ b/tests/fake_browser_ppapi/fake_file_io_trusted.cc
@@ -24,7 +24,7 @@ namespace fake_browser_ppapi {
namespace {
int32_t GetOSFileDescriptor(PP_Resource file_io_id) {
- DebugPrintf("FileIOTrusted::GetOSFileDescriptor: file_io_id=%"NACL_PRId64"\n",
+ DebugPrintf("FileIOTrusted::GetOSFileDescriptor: file_io_id=%"NACL_PRId32"\n",
file_io_id);
FileIO* file_io = GetResource(file_io_id)->AsFileIO();
if (file_io == NULL)
@@ -45,7 +45,7 @@ int32_t WillWrite(PP_Resource file_io_id,
int64_t offset,
int32_t bytes_to_write,
struct PP_CompletionCallback callback) {
- DebugPrintf("FileIOTrusted::WillWrite: file_io_id=%"NACL_PRId64"\n",
+ DebugPrintf("FileIOTrusted::WillWrite: file_io_id=%"NACL_PRId32"\n",
file_io_id);
UNREFERENCED_PARAMETER(offset);
UNREFERENCED_PARAMETER(bytes_to_write);
@@ -57,7 +57,7 @@ int32_t WillWrite(PP_Resource file_io_id,
int32_t WillSetLength(PP_Resource file_io_id,
int64_t length,
struct PP_CompletionCallback callback) {
- DebugPrintf("FileIOTrusted::WillSetLength: file_io_id=%"NACL_PRId64"\n",
+ DebugPrintf("FileIOTrusted::WillSetLength: file_io_id=%"NACL_PRId32"\n",
file_io_id);
UNREFERENCED_PARAMETER(length);
UNREFERENCED_PARAMETER(callback);

Powered by Google App Engine
This is Rietveld 408576698