drive_backend_constants.h revision a1401311d1ab56c4ed0a474bd38c108f75cb0cd9
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 char kSyncRootFolderTitleDev[];
15extern const char kMimeTypeOctetStream[];
16
17extern const base::FilePath::CharType kDatabaseName[];
18
19extern const char kDatabaseVersionKey[];
20extern const int64 kCurrentDatabaseVersion;
21extern const char kServiceMetadataKey[];
22extern const char kFileMetadataKeyPrefix[];
23extern const char kFileTrackerKeyPrefix[];
24
25extern const int kMaxRetry;
26extern const int64 kListChangesRetryDelaySeconds;
27
28extern const int64 kInvalidTrackerID;
29
30}  // namespace drive_backend
31}  // namespace sync_file_system
32
33#endif  // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS_H_
34