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

Unified Diff: net/ftp/ftp_transaction.h

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 years 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
« no previous file with comments | « net/ftp/ftp_response_info.h ('k') | net/ftp/ftp_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ftp/ftp_transaction.h
diff --git a/net/ftp/ftp_transaction.h b/net/ftp/ftp_transaction.h
index f0e1b41f26dc991626de04a4e252e1e927bbc0f1..07401896fb6eb1793217a0e78a76d7045aa42383 100644
--- a/net/ftp/ftp_transaction.h
+++ b/net/ftp/ftp_transaction.h
@@ -5,6 +5,8 @@
#ifndef NET_FTP_FTP_TRANSACTION_H_
#define NET_FTP_FTP_TRANSACTION_H_
+#include <stdint.h>
+
#include "net/base/completion_callback.h"
#include "net/base/io_buffer.h"
#include "net/base/load_states.h"
@@ -72,7 +74,7 @@ class NET_EXPORT_PRIVATE FtpTransaction {
// Returns the upload progress in bytes. If there is no upload data,
// zero will be returned.
- virtual uint64 GetUploadProgress() const = 0;
+ virtual uint64_t GetUploadProgress() const = 0;
};
} // namespace net
« no previous file with comments | « net/ftp/ftp_response_info.h ('k') | net/ftp/ftp_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698