| Index: components/drive/drive_test_util.h
|
| diff --git a/components/drive/drive_test_util.h b/components/drive/drive_test_util.h
|
| index 327dc157e0174d69f7f0568578308e8c4efd88fc..88bb9b2027996790341676c5a8a2e7e748191fca 100644
|
| --- a/components/drive/drive_test_util.h
|
| +++ b/components/drive/drive_test_util.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef COMPONENTS_DRIVE_DRIVE_TEST_UTIL_H_
|
| #define COMPONENTS_DRIVE_DRIVE_TEST_UTIL_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| #include "components/drive/file_cache.h"
|
| @@ -26,7 +28,7 @@ namespace drive {
|
| namespace test_util {
|
|
|
| // Disk space size used by FakeFreeDiskSpaceGetter.
|
| -const int64 kLotsOfSpace = drive::internal::kMinFreeSpaceInBytes * 10;
|
| +const int64_t kLotsOfSpace = drive::internal::kMinFreeSpaceInBytes * 10;
|
|
|
| // Helper to destroy objects which needs Destroy() to be called on destruction.
|
| // Note: When using this helper, you should destruct objects before
|
|
|