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 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS_H_ |
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS_H_ |
7 | 7 |
8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
9 | 9 |
10 namespace sync_file_system { | 10 namespace sync_file_system { |
11 namespace drive_backend { | 11 namespace drive_backend { |
12 | 12 |
13 extern const char kSyncRootFolderTitle[]; | 13 extern const char kSyncRootFolderTitle[]; |
| 14 extern const char kSyncRootFolderTitleDev[]; |
| 15 extern const char kMimeTypeOctetStream[]; |
| 16 |
14 extern const base::FilePath::CharType kDatabaseName[]; | 17 extern const base::FilePath::CharType kDatabaseName[]; |
15 | 18 |
16 extern const char kDatabaseVersionKey[]; | 19 extern const char kDatabaseVersionKey[]; |
17 extern const int64 kCurrentDatabaseVersion; | 20 extern const int64 kCurrentDatabaseVersion; |
18 extern const char kServiceMetadataKey[]; | 21 extern const char kServiceMetadataKey[]; |
19 extern const char kFileMetadataKeyPrefix[]; | 22 extern const char kFileMetadataKeyPrefix[]; |
20 extern const char kFileTrackerKeyPrefix[]; | 23 extern const char kFileTrackerKeyPrefix[]; |
21 | 24 |
22 extern const int kMaxRetry; | 25 extern const int kMaxRetry; |
23 extern const int64 kListChangesRetryDelaySeconds; | 26 extern const int64 kListChangesRetryDelaySeconds; |
24 | 27 |
25 } // namespace drive_backend | 28 } // namespace drive_backend |
26 } // namespace sync_file_system | 29 } // namespace sync_file_system |
27 | 30 |
28 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS
_H_ | 31 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS
_H_ |
OLD | NEW |