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

Unified Diff: net/base/upload_element_reader.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/upload_element_reader.h
diff --git a/net/base/upload_element_reader.h b/net/base/upload_element_reader.h
index a46b9709fa859f3f72fa8645ff1df49c0e9ef9fe..2814efa33f126f62845ff2790a76fa8b5d9438e1 100644
--- a/net/base/upload_element_reader.h
+++ b/net/base/upload_element_reader.h
@@ -37,10 +37,10 @@ class NET_EXPORT UploadElementReader {
// Returns the byte-length of the element. For files that do not exist, 0
// is returned. This is done for consistency with Mozilla.
- virtual uint64 GetContentLength() const = 0;
+ virtual uint64_t GetContentLength() const = 0;
// Returns the number of bytes remaining to read.
- virtual uint64 BytesRemaining() const = 0;
+ virtual uint64_t BytesRemaining() const = 0;
// Returns true if the upload element is entirely in memory.
// The default implementation returns false.

Powered by Google App Engine
This is Rietveld 408576698