blob: 6f0de666f34e11ef0b8df577cf38fdb16713cab0 [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/sync_file_system/drive_backend/drive_backend_constants.h"
namespace sync_file_system {
namespace drive_backend {
const char kSyncRootFolderTitle[] = "Chrome Syncable FileSystem";
const base::FilePath::CharType kDatabaseName[] =
FILE_PATH_LITERAL("DriveMetadata_v2");
const char kDatabaseVersionKey[] = "VERSION";
const int64 kCurrentDatabaseVersion = 3;
const char kServiceMetadataKey[] = "SERVICE";
const char kFileMetadataKeyPrefix[] = "FILE: ";
const char kFileTrackerKeyPrefix[] = "TRACKER: ";
const int kMaxRetry = 5;
const int64 kListChangesRetryDelaySeconds = 60 * 60;
} // namespace drive_backend
} // namespace sync_file_system