Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(887)

Unified Diff: components/drive/drive_test_util.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/drive/drive_notification_manager.h ('k') | components/drive/drive_uploader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « components/drive/drive_notification_manager.h ('k') | components/drive/drive_uploader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698