| Index: content/browser/download/download_create_info.h
|
| diff --git a/content/browser/download/download_create_info.h b/content/browser/download/download_create_info.h
|
| index 406f4a1a308fee39dfcf6e525b1a6042ea04078e..1767e45eebc8e82a7d3f427fc00f09d55dc43e24 100644
|
| --- a/content/browser/download/download_create_info.h
|
| +++ b/content/browser/download/download_create_info.h
|
| @@ -5,11 +5,13 @@
|
| #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_CREATE_INFO_H_
|
| #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_CREATE_INFO_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/files/file_path.h"
|
| +#include "base/macros.h"
|
| #include "base/time/time.h"
|
| #include "content/browser/download/download_file.h"
|
| #include "content/browser/download/download_request_handle.h"
|
| @@ -25,7 +27,7 @@ namespace content {
|
| // want to pass |DownloadItem|s between threads.
|
| struct CONTENT_EXPORT DownloadCreateInfo {
|
| DownloadCreateInfo(const base::Time& start_time,
|
| - int64 total_bytes,
|
| + int64_t total_bytes,
|
| const net::BoundNetLog& bound_net_log,
|
| scoped_ptr<DownloadSaveInfo> save_info);
|
| DownloadCreateInfo();
|
| @@ -53,10 +55,10 @@ struct CONTENT_EXPORT DownloadCreateInfo {
|
| base::Time start_time;
|
|
|
| // The total download size.
|
| - int64 total_bytes;
|
| + int64_t total_bytes;
|
|
|
| // The ID of the download.
|
| - uint32 download_id;
|
| + uint32_t download_id;
|
|
|
| // True if the download was initiated by user action.
|
| bool has_user_gesture;
|
|
|