| Index: chromeos/disks/disk_mount_manager.cc
|
| diff --git a/chromeos/disks/disk_mount_manager.cc b/chromeos/disks/disk_mount_manager.cc
|
| index e947eb772b518ed9e89aecf716217933ad37f270..3c89ac6fa05863224c8a927630b5a627208f6e05 100644
|
| --- a/chromeos/disks/disk_mount_manager.cc
|
| +++ b/chromeos/disks/disk_mount_manager.cc
|
| @@ -4,9 +4,13 @@
|
|
|
| #include "chromeos/disks/disk_mount_manager.h"
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <set>
|
|
|
| #include "base/bind.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/observer_list.h"
|
| #include "base/stl_util.h"
|
| @@ -651,7 +655,7 @@ DiskMountManager::Disk::Disk(const std::string& device_path,
|
| const std::string& fs_uuid,
|
| const std::string& system_path_prefix,
|
| DeviceType device_type,
|
| - uint64 total_size_in_bytes,
|
| + uint64_t total_size_in_bytes,
|
| bool is_parent,
|
| bool is_read_only,
|
| bool has_media,
|
| @@ -677,8 +681,7 @@ DiskMountManager::Disk::Disk(const std::string& device_path,
|
| has_media_(has_media),
|
| on_boot_device_(on_boot_device),
|
| on_removable_device_(on_removable_device),
|
| - is_hidden_(is_hidden) {
|
| -}
|
| + is_hidden_(is_hidden) {}
|
|
|
| DiskMountManager::Disk::~Disk() {}
|
|
|
|
|