drive_backend_constants.cc revision a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7
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#include "chrome/browser/sync_file_system/drive_backend/drive_backend_constants.h"
6
7namespace sync_file_system {
8namespace drive_backend {
9
10const char kSyncRootFolderTitle[] = "Chrome Syncable FileSystem";
11const base::FilePath::CharType kDatabaseName[] =
12    FILE_PATH_LITERAL("DriveMetadata_v2");
13
14const char kDatabaseVersionKey[] = "VERSION";
15const int64 kCurrentDatabaseVersion = 3;
16const char kServiceMetadataKey[] = "SERVICE";
17const char kFileMetadataKeyPrefix[] = "FILE: ";
18const char kFileTrackerKeyPrefix[] = "TRACKER: ";
19
20const int kMaxRetry = 5;
21const int64 kListChangesRetryDelaySeconds = 60 * 60;
22
23}  // namespace drive_backend
24}  // namespace sync_file_system
25