| 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
|
|
|