| 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
 | 
| 
 |