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

Unified Diff: chrome/browser/sync_file_system/drive_backend/drive_backend_constants.h

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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
Index: chrome/browser/sync_file_system/drive_backend/drive_backend_constants.h
diff --git a/chrome/browser/sync_file_system/drive_backend/drive_backend_constants.h b/chrome/browser/sync_file_system/drive_backend/drive_backend_constants.h
index 292393ed7a26ccd7534d3296759a0a7378708e18..f342e5d5010cf62538480ff6711ddd420555f7bc 100644
--- a/chrome/browser/sync_file_system/drive_backend/drive_backend_constants.h
+++ b/chrome/browser/sync_file_system/drive_backend/drive_backend_constants.h
@@ -5,6 +5,8 @@
#ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS_H_
#define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS_H_
+#include <stdint.h>
+
#include "base/files/file_path.h"
namespace sync_file_system {
@@ -16,8 +18,8 @@ extern const char kMimeTypeOctetStream[];
extern const base::FilePath::CharType kDatabaseName[];
extern const char kDatabaseVersionKey[];
-extern const int64 kCurrentDatabaseVersion;
-extern const int64 kDatabaseOnDiskVersion;
+extern const int64_t kCurrentDatabaseVersion;
+extern const int64_t kDatabaseOnDiskVersion;
extern const char kServiceMetadataKey[];
extern const char kFileMetadataKeyPrefix[];
extern const char kFileTrackerKeyPrefix[];
@@ -34,9 +36,9 @@ extern const char kDirtyIDKeyPrefix[];
extern const char kDemotedDirtyIDKeyPrefix[];
extern const int kMaxRetry;
-extern const int64 kListChangesRetryDelaySeconds;
+extern const int64_t kListChangesRetryDelaySeconds;
-extern const int64 kInvalidTrackerID;
+extern const int64_t kInvalidTrackerID;
} // namespace drive_backend
} // namespace sync_file_system

Powered by Google App Engine
This is Rietveld 408576698