| Index: components/history/content/browser/download_constants_utils.h
|
| diff --git a/components/history/content/browser/download_constants_utils.h b/components/history/content/browser/download_constants_utils.h
|
| index f0a63e963b965760f2bf0741197130e6c0a6dbe9..284e8c6cfef763ff61a938c5ec51c8bbac46227c 100644
|
| --- a/components/history/content/browser/download_constants_utils.h
|
| +++ b/components/history/content/browser/download_constants_utils.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef COMPONENTS_HISTORY_CONTENT_BROWSER_DOWNLOAD_CONSTANTS_UTILS_H_
|
| #define COMPONENTS_HISTORY_CONTENT_BROWSER_DOWNLOAD_CONSTANTS_UTILS_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| #include "components/history/core/browser/download_types.h"
|
| @@ -40,8 +42,8 @@ DownloadInterruptReason ToHistoryDownloadInterruptReason(
|
| // Utility functions to convert between content download id values and
|
| // history::DownloadId type (value have no meaning in history, except
|
| // for kInvalidDownloadId).
|
| -uint32 ToContentDownloadId(DownloadId id);
|
| -DownloadId ToHistoryDownloadId(uint32 id);
|
| +uint32_t ToContentDownloadId(DownloadId id);
|
| +DownloadId ToHistoryDownloadId(uint32_t id);
|
| } // namespace history
|
|
|
| #endif // COMPONENTS_HISTORY_CONTENT_BROWSER_DOWNLOAD_CONSTANTS_UTILS_H_
|
|
|