drive_backend_constants.h revision 1e9bf3e0803691d0a228da41fc608347b6db4340
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
3// found in the LICENSE file.
4
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_
7
8#include "base/files/file_path.h"
9
10namespace sync_file_system {
11namespace drive_backend {
12
13extern const char kSyncRootFolderTitle[];
14extern const base::FilePath::CharType kDatabaseName[];
15
16extern const char kDatabaseVersionKey[];
17extern const int64 kCurrentDatabaseVersion;
18extern const char kServiceMetadataKey[];
19extern const char kFileMetadataKeyPrefix[];
20extern const char kFileTrackerKeyPrefix[];
21
22extern const int kMaxRetry;
23extern const int64 kListChangesRetryDelaySeconds;
24
25}  // namespace drive_backend
26}  // namespace sync_file_system
27
28#endif  // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS_H_
29