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