| Index: components/storage_monitor/storage_monitor_mac.mm
|
| diff --git a/components/storage_monitor/storage_monitor_mac.mm b/components/storage_monitor/storage_monitor_mac.mm
|
| index 22a884b46094ae0afa5dafbcf5551a3121464ff6..1ae2c832f9699fc466b8cb68c6ffd35870de2783 100644
|
| --- a/components/storage_monitor/storage_monitor_mac.mm
|
| +++ b/components/storage_monitor/storage_monitor_mac.mm
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "components/storage_monitor/storage_monitor_mac.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/mac/foundation_util.h"
|
| #include "base/mac/mac_util.h"
|
| #include "base/strings/sys_string_conversions.h"
|
| @@ -61,7 +63,7 @@ StorageInfo BuildStorageInfo(
|
| CFNumberRef size_number =
|
| base::mac::GetValueFromDictionary<CFNumberRef>(
|
| dict, kDADiskDescriptionMediaSizeKey);
|
| - uint64 size_in_bytes = 0;
|
| + uint64_t size_in_bytes = 0;
|
| if (size_number)
|
| CFNumberGetValue(size_number, kCFNumberLongLongType, &size_in_bytes);
|
|
|
|
|