| Index: chromeos/dbus/cros_disks_client_unittest.cc
|
| diff --git a/chromeos/dbus/cros_disks_client_unittest.cc b/chromeos/dbus/cros_disks_client_unittest.cc
|
| index fc4c23f4d21417d1f7d073e97e40e6a2eecafbcf..82dbf331f84662c2208399b96995e8ae4fd46c90 100644
|
| --- a/chromeos/dbus/cros_disks_client_unittest.cc
|
| +++ b/chromeos/dbus/cros_disks_client_unittest.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chromeos/dbus/cros_disks_client.h"
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/memory/scoped_ptr.h"
|
| #include "dbus/message.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -45,10 +47,10 @@ TEST(CrosDisksClientTest, DiskInfo) {
|
| const bool kDeviceIsOnBootDevice = true;
|
| const bool kDeviceIsOnRemovableDevice = true;
|
| const bool kDeviceIsReadOnly = true;
|
| - const uint32 kDeviceMediaType = cros_disks::DEVICE_MEDIA_SD;
|
| + const uint32_t kDeviceMediaType = cros_disks::DEVICE_MEDIA_SD;
|
| const std::string kMountPath = "/media/removable/UNTITLED";
|
| const bool kDevicePresentationHide = false;
|
| - const uint64 kDeviceSize = 16005464064;
|
| + const uint64_t kDeviceSize = 16005464064;
|
| const std::string kDriveModel = "DriveModel";
|
| const std::string kIdLabel = "UNTITLED";
|
| const std::string kIdUuid = "XXXX-YYYY";
|
|
|