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

Unified Diff: net/base/file_stream.h

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.h
diff --git a/net/base/file_stream.h b/net/base/file_stream.h
index 89db65e15b5ae49e50de78874e64c3babf7df640..1524da529716bcd5edf21f436a2ddec076c8b8f3 100644
--- a/net/base/file_stream.h
+++ b/net/base/file_stream.h
@@ -68,7 +68,8 @@ class NET_EXPORT FileStream {
// relative to the start of the file. Otherwise, an error code is returned.
// It is invalid to request any asynchronous operations while there is an
// in-flight asynchronous operation.
- virtual int Seek(base::File::Whence whence, int64 offset,
+ virtual int Seek(base::File::Whence whence,
+ int64_t offset,
const Int64CompletionCallback& callback);
// Call this method to read data from the current stream position
« no previous file with comments | « net/base/escape.cc ('k') | net/base/file_stream.cc » ('j') | net/cert/crl_set_storage.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698