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

Side by Side Diff: chrome/common/chrome_constants.h

Issue 2851303003: Add the download component and initial setup (Closed)
Patch Set: Removed accidental rename Created 3 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // A handful of resource-like constants related to the Chrome application. 5 // A handful of resource-like constants related to the Chrome application.
6 6
7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_
8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_
9 9
10 #include <stddef.h> 10 #include <stddef.h>
(...skipping 30 matching lines...) Expand all
41 extern const char kMultiProfileDirPrefix[]; 41 extern const char kMultiProfileDirPrefix[];
42 extern const base::FilePath::CharType kGuestProfileDir[]; 42 extern const base::FilePath::CharType kGuestProfileDir[];
43 extern const base::FilePath::CharType kSystemProfileDir[]; 43 extern const base::FilePath::CharType kSystemProfileDir[];
44 44
45 // filenames 45 // filenames
46 extern const base::FilePath::CharType kCacheDirname[]; 46 extern const base::FilePath::CharType kCacheDirname[];
47 extern const base::FilePath::CharType kChannelIDFilename[]; 47 extern const base::FilePath::CharType kChannelIDFilename[];
48 extern const base::FilePath::CharType kCookieFilename[]; 48 extern const base::FilePath::CharType kCookieFilename[];
49 extern const base::FilePath::CharType kCRLSetFilename[]; 49 extern const base::FilePath::CharType kCRLSetFilename[];
50 extern const base::FilePath::CharType kCustomDictionaryFileName[]; 50 extern const base::FilePath::CharType kCustomDictionaryFileName[];
51 extern const base::FilePath::CharType kDownloadServicePersistedStorageDirname[];
52 extern const base::FilePath::CharType kDownloadServiceTemporaryStorageDirname[];
xingliu 2017/05/01 23:56:54 Shall we remove it or define this in chrome_consta
Peter Beverloo 2017/05/02 16:12:20 +1 to removing, it's unused
David Trainor- moved to gerrit 2017/05/03 06:02:58 Thanks! My bad I forgot to remove the header defi
51 extern const base::FilePath::CharType kExtensionActivityLogFilename[]; 53 extern const base::FilePath::CharType kExtensionActivityLogFilename[];
52 extern const base::FilePath::CharType kExtensionsCookieFilename[]; 54 extern const base::FilePath::CharType kExtensionsCookieFilename[];
53 extern const base::FilePath::CharType kFeatureEngagementTrackerStorageDirname[]; 55 extern const base::FilePath::CharType kFeatureEngagementTrackerStorageDirname[];
54 extern const base::FilePath::CharType kFirstRunSentinel[]; 56 extern const base::FilePath::CharType kFirstRunSentinel[];
55 extern const base::FilePath::CharType kGCMStoreDirname[]; 57 extern const base::FilePath::CharType kGCMStoreDirname[];
56 extern const base::FilePath::CharType kLocalStateFilename[]; 58 extern const base::FilePath::CharType kLocalStateFilename[];
57 extern const base::FilePath::CharType kLocalStorePoolName[]; 59 extern const base::FilePath::CharType kLocalStorePoolName[];
58 extern const base::FilePath::CharType kMediaCacheDirname[]; 60 extern const base::FilePath::CharType kMediaCacheDirname[];
59 extern const base::FilePath::CharType kOfflinePageArchivesDirname[]; 61 extern const base::FilePath::CharType kOfflinePageArchivesDirname[];
60 extern const base::FilePath::CharType kOfflinePageMetadataDirname[]; 62 extern const base::FilePath::CharType kOfflinePageMetadataDirname[];
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 114
113 // Used to identify the application to the system AV function in Windows. 115 // Used to identify the application to the system AV function in Windows.
114 extern const char kApplicationClientIDStringForAVScanning[]; 116 extern const char kApplicationClientIDStringForAVScanning[];
115 117
116 // The largest reasonable length we'd assume for a meta tag attribute. 118 // The largest reasonable length we'd assume for a meta tag attribute.
117 extern const size_t kMaxMetaTagAttributeLength; 119 extern const size_t kMaxMetaTagAttributeLength;
118 120
119 } // namespace chrome 121 } // namespace chrome
120 122
121 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ 123 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698