commit | 69f8ea8811eabe16f4793d15c8e211805d29dbe7 | [log] [tgz] |
---|---|---|
author | wtc <[email protected]> | Thu Jun 04 00:08:13 2015 |
committer | Commit bot <[email protected]> | Thu Jun 04 00:08:59 2015 |
tree | f94c27650430f999b4da31289b46680ceec36d13 | |
parent | c23a3e54501532ebb2b17da05639aea7d7b35604 [diff] [blame] |
Use the exact-width integer types defined in <stdint.h> rather than "base/basictypes.h" in net/android, net/base, and net/cert. [email protected] BUG=488550 TEST=none Review URL: https://codereview.chromium.org/1158923005 Cr-Commit-Position: refs/heads/master@{#332742}
diff --git a/net/base/file_stream_context_win.cc b/net/base/file_stream_context_win.cc index 1a39384..5344e681 100644 --- a/net/base/file_stream_context_win.cc +++ b/net/base/file_stream_context_win.cc
@@ -116,7 +116,7 @@ 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) {