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

Unified Diff: net/base/file_stream.cc

Issue 1158923005: Use the exact-width integer types defined in <stdint.h> rather than (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweak comments. Exclude mime_sniffer*. Rebase. Created 5 years, 7 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: net/base/file_stream.cc
diff --git a/net/base/file_stream.cc b/net/base/file_stream.cc
index a97d50b7886376bf6d37974d12d97c66c03db204..ab0a3bec1c3aba8c655ad7855fa565686a405bcf 100644
--- a/net/base/file_stream.cc
+++ b/net/base/file_stream.cc
@@ -45,7 +45,7 @@ bool FileStream::IsOpen() const {
}
int FileStream::Seek(base::File::Whence whence,
- int64 offset,
+ int64_t offset,
const Int64CompletionCallback& callback) {
if (!IsOpen())
return ERR_UNEXPECTED;

Powered by Google App Engine
This is Rietveld 408576698