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

Unified Diff: net/base/file_stream_context_win.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_context_win.cc
diff --git a/net/base/file_stream_context_win.cc b/net/base/file_stream_context_win.cc
index 1a39384c5ee66d3ab843e977aa5ccae36788ec0a..5344e6819a36094cb3b9d181682c37e569020b52 100644
--- a/net/base/file_stream_context_win.cc
+++ b/net/base/file_stream_context_win.cc
@@ -116,7 +116,7 @@ int FileStream::Context::Write(IOBuffer* buf,
FileStream::Context::IOResult FileStream::Context::SeekFileImpl(
base::File::Whence whence,
- int64 offset) {
+ int64_t offset) {
LARGE_INTEGER result;
result.QuadPart = file_.Seek(whence, offset);
if (result.QuadPart >= 0) {

Powered by Google App Engine
This is Rietveld 408576698