OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/sync_file_system/drive_backend/drive_backend_constants.
h" | 5 #include "chrome/browser/sync_file_system/drive_backend/drive_backend_constants.
h" |
6 | 6 |
7 namespace sync_file_system { | 7 namespace sync_file_system { |
8 namespace drive_backend { | 8 namespace drive_backend { |
9 | 9 |
10 const char kSyncRootFolderTitle[] = "Chrome Syncable FileSystem"; | 10 const char kSyncRootFolderTitle[] = "Chrome Syncable FileSystem"; |
11 const char kSyncRootFolderTitleDev[] = "Chrome Syncable FileSystem Dev"; | |
12 const char kMimeTypeOctetStream[] = "application/octet-stream"; | 11 const char kMimeTypeOctetStream[] = "application/octet-stream"; |
13 | 12 |
14 const base::FilePath::CharType kDatabaseName[] = | 13 const base::FilePath::CharType kDatabaseName[] = |
15 FILE_PATH_LITERAL("DriveMetadata_v2"); | 14 FILE_PATH_LITERAL("DriveMetadata_v2"); |
16 | 15 |
17 const char kDatabaseVersionKey[] = "VERSION"; | 16 const char kDatabaseVersionKey[] = "VERSION"; |
18 const int64 kCurrentDatabaseVersion = 3; | 17 const int64 kCurrentDatabaseVersion = 3; |
19 const int64 kDatabaseOnDiskVersion = 4; | 18 const int64 kDatabaseOnDiskVersion = 4; |
20 const char kServiceMetadataKey[] = "SERVICE"; | 19 const char kServiceMetadataKey[] = "SERVICE"; |
21 const char kFileMetadataKeyPrefix[] = "FILE: "; | 20 const char kFileMetadataKeyPrefix[] = "FILE: "; |
(...skipping 10 matching lines...) Expand all Loading... |
32 const char kDirtyIDKeyPrefix[] = "DIRTY: "; | 31 const char kDirtyIDKeyPrefix[] = "DIRTY: "; |
33 const char kDemotedDirtyIDKeyPrefix[] = "DEMOTED_DIRTY: "; | 32 const char kDemotedDirtyIDKeyPrefix[] = "DEMOTED_DIRTY: "; |
34 | 33 |
35 const int kMaxRetry = 5; | 34 const int kMaxRetry = 5; |
36 const int64 kListChangesRetryDelaySeconds = 60 * 60; | 35 const int64 kListChangesRetryDelaySeconds = 60 * 60; |
37 | 36 |
38 const int64 kInvalidTrackerID = 0; | 37 const int64 kInvalidTrackerID = 0; |
39 | 38 |
40 } // namespace drive_backend | 39 } // namespace drive_backend |
41 } // namespace sync_file_system | 40 } // namespace sync_file_system |
OLD | NEW |