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

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

Issue 1053663003: Cleanup: Remove unused variables in chrome/ found by Scythe. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
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[];
15 extern const char kMimeTypeOctetStream[]; 14 extern const char kMimeTypeOctetStream[];
16 15
17 extern const base::FilePath::CharType kDatabaseName[]; 16 extern const base::FilePath::CharType kDatabaseName[];
18 17
19 extern const char kDatabaseVersionKey[]; 18 extern const char kDatabaseVersionKey[];
20 extern const int64 kCurrentDatabaseVersion; 19 extern const int64 kCurrentDatabaseVersion;
21 extern const int64 kDatabaseOnDiskVersion; 20 extern const int64 kDatabaseOnDiskVersion;
22 extern const char kServiceMetadataKey[]; 21 extern const char kServiceMetadataKey[];
23 extern const char kFileMetadataKeyPrefix[]; 22 extern const char kFileMetadataKeyPrefix[];
24 extern const char kFileTrackerKeyPrefix[]; 23 extern const char kFileTrackerKeyPrefix[];
(...skipping 11 matching lines...) Expand all
36 35
37 extern const int kMaxRetry; 36 extern const int kMaxRetry;
38 extern const int64 kListChangesRetryDelaySeconds; 37 extern const int64 kListChangesRetryDelaySeconds;
39 38
40 extern const int64 kInvalidTrackerID; 39 extern const int64 kInvalidTrackerID;
41 40
42 } // namespace drive_backend 41 } // namespace drive_backend
43 } // namespace sync_file_system 42 } // namespace sync_file_system
44 43
45 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS _H_ 44 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_BACKEND_CONSTANTS _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698