drive_backend_constants.cc revision 4e180b6a0b4720a9b8e9e959a882386f690f08ff
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");
13
14const int kMaxRetry = 5;
15
16}  // namespace drive_backend
17}  // namespace sync_file_system
18