Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Side by Side Diff: chrome/browser/sync_file_system/drive_backend/drive_backend_constants.h

Issue 378213002: [SyncFS] Implement GetFileTrackerIDsByParent (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Work for a nit Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/sync_file_system/drive_backend/drive_backend_constants.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS_H_ 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_ 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS_H_
7 7
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 9
10 namespace sync_file_system { 10 namespace sync_file_system {
11 namespace drive_backend { 11 namespace drive_backend {
12 12
13 extern const char kSyncRootFolderTitle[]; 13 extern const char kSyncRootFolderTitle[];
14 extern const char kSyncRootFolderTitleDev[]; 14 extern const char kSyncRootFolderTitleDev[];
15 extern const char kMimeTypeOctetStream[]; 15 extern const char kMimeTypeOctetStream[];
16 16
17 extern const base::FilePath::CharType kDatabaseName[]; 17 extern const base::FilePath::CharType kDatabaseName[];
18 18
19 extern const char kDatabaseVersionKey[]; 19 extern const char kDatabaseVersionKey[];
20 extern const int64 kCurrentDatabaseVersion; 20 extern const int64 kCurrentDatabaseVersion;
21 extern const char kServiceMetadataKey[]; 21 extern const char kServiceMetadataKey[];
22 extern const char kFileMetadataKeyPrefix[]; 22 extern const char kFileMetadataKeyPrefix[];
23 extern const char kFileTrackerKeyPrefix[]; 23 extern const char kFileTrackerKeyPrefix[];
24 24
25 extern const char kAppRootIDByAppIDKeyPrefix[]; 25 extern const char kAppRootIDByAppIDKeyPrefix[];
26 extern const char kActiveTrackerIDByFileIDKeyPrefix[]; 26 extern const char kActiveTrackerIDByFileIDKeyPrefix[];
27 extern const char kTrackerIDByFileIDKeyPrefix[]; 27 extern const char kTrackerIDByFileIDKeyPrefix[];
28 extern const char kMultiTrackerByFileIDKeyPrefix[]; 28 extern const char kMultiTrackerByFileIDKeyPrefix[];
29 extern const char kActiveTrackerIDByParentAndTitleKeyPrefix[];
30 extern const char kTrackerIDByParentAndTitleKeyPrefix[];
31 extern const char kMultiBackingParentAndTitleKeyPrefix[];
29 extern const char kDirtyIDKeyPrefix[]; 32 extern const char kDirtyIDKeyPrefix[];
30 extern const char kDemotedDirtyIDKeyPrefix[]; 33 extern const char kDemotedDirtyIDKeyPrefix[];
31 34
32 extern const int kMaxRetry; 35 extern const int kMaxRetry;
33 extern const int64 kListChangesRetryDelaySeconds; 36 extern const int64 kListChangesRetryDelaySeconds;
34 37
35 extern const int64 kInvalidTrackerID; 38 extern const int64 kInvalidTrackerID;
36 39
37 } // namespace drive_backend 40 } // namespace drive_backend
38 } // namespace sync_file_system 41 } // namespace sync_file_system
39 42
40 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS _H_ 43 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS _H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync_file_system/drive_backend/drive_backend_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698