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

Unified Diff: net/base/upload_data_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/upload_data_stream.cc
diff --git a/net/base/upload_data_stream.cc b/net/base/upload_data_stream.cc
index 936c9128833017c91e5738b4338974748ec7af4e..c2d88f9742ac5056650b1b72b80d5c9a6d820476 100644
--- a/net/base/upload_data_stream.cc
+++ b/net/base/upload_data_stream.cc
@@ -11,7 +11,7 @@
namespace net {
-UploadDataStream::UploadDataStream(bool is_chunked, int64 identifier)
+UploadDataStream::UploadDataStream(bool is_chunked, int64_t identifier)
: total_size_(0),
current_position_(0),
identifier_(identifier),
@@ -71,7 +71,7 @@ void UploadDataStream::Reset() {
ResetInternal();
}
-void UploadDataStream::SetSize(uint64 size) {
+void UploadDataStream::SetSize(uint64_t size) {
DCHECK(!initialized_successfully_);
DCHECK(!is_chunked_);
total_size_ = size;

Powered by Google App Engine
This is Rietveld 408576698