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

Unified Diff: net/ftp/ftp_response_info.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_network_transaction_unittest.cc ('k') | net/ftp/ftp_transaction.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ftp/ftp_response_info.h
diff --git a/net/ftp/ftp_response_info.h b/net/ftp/ftp_response_info.h
index 8bae8c1993108806be5737e36e5588f539b8d53b..70d365367d8783cf7636b3f38a0b4ef30c5bbad7 100644
--- a/net/ftp/ftp_response_info.h
+++ b/net/ftp/ftp_response_info.h
@@ -5,6 +5,8 @@
#ifndef NET_FTP_FTP_RESPONSE_INFO_H_
#define NET_FTP_FTP_RESPONSE_INFO_H_
+#include <stdint.h>
+
#include "base/time/time.h"
#include "net/base/host_port_pair.h"
@@ -29,7 +31,7 @@ class FtpResponseInfo {
// Expected content size, in bytes, as reported by SIZE command. Only valid
// for file downloads. -1 means unknown size.
- int64 expected_content_size;
+ int64_t expected_content_size;
// True if the response data is of a directory listing.
bool is_directory_listing;
« no previous file with comments | « net/ftp/ftp_network_transaction_unittest.cc ('k') | net/ftp/ftp_transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698