OLD | NEW |
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 #include "chrome/common/chrome_constants.h" | 5 #include "chrome/common/chrome_constants.h" |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 #include "chrome/common/chrome_version.h" | 8 #include "chrome/common/chrome_version.h" |
9 | 9 |
10 #define FPL FILE_PATH_LITERAL | 10 #define FPL FILE_PATH_LITERAL |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 const base::FilePath::CharType kSystemProfileDir[] = FPL("System Profile"); | 133 const base::FilePath::CharType kSystemProfileDir[] = FPL("System Profile"); |
134 | 134 |
135 // filenames | 135 // filenames |
136 const base::FilePath::CharType kCacheDirname[] = FPL("Cache"); | 136 const base::FilePath::CharType kCacheDirname[] = FPL("Cache"); |
137 const base::FilePath::CharType kChannelIDFilename[] = FPL("Origin Bound Certs"); | 137 const base::FilePath::CharType kChannelIDFilename[] = FPL("Origin Bound Certs"); |
138 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies"); | 138 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies"); |
139 const base::FilePath::CharType kCRLSetFilename[] = | 139 const base::FilePath::CharType kCRLSetFilename[] = |
140 FPL("Certificate Revocation Lists"); | 140 FPL("Certificate Revocation Lists"); |
141 const base::FilePath::CharType kCustomDictionaryFileName[] = | 141 const base::FilePath::CharType kCustomDictionaryFileName[] = |
142 FPL("Custom Dictionary.txt"); | 142 FPL("Custom Dictionary.txt"); |
| 143 const base::FilePath::CharType kDownloadServiceStorageDirname[] = |
| 144 FPL("Download Service"); |
143 const base::FilePath::CharType kExtensionActivityLogFilename[] = | 145 const base::FilePath::CharType kExtensionActivityLogFilename[] = |
144 FPL("Extension Activity"); | 146 FPL("Extension Activity"); |
145 const base::FilePath::CharType kExtensionsCookieFilename[] = | 147 const base::FilePath::CharType kExtensionsCookieFilename[] = |
146 FPL("Extension Cookies"); | 148 FPL("Extension Cookies"); |
147 const base::FilePath::CharType kFeatureEngagementTrackerStorageDirname[] = | 149 const base::FilePath::CharType kFeatureEngagementTrackerStorageDirname[] = |
148 FPL("Feature Engagement Tracker"); | 150 FPL("Feature Engagement Tracker"); |
149 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); | 151 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); |
150 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); | 152 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); |
151 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 153 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
152 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); | 154 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 // user can select for different file types. | 212 // user can select for different file types. |
211 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 213 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
212 const char kApplicationClientIDStringForAVScanning[] = | 214 const char kApplicationClientIDStringForAVScanning[] = |
213 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 215 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
214 | 216 |
215 const size_t kMaxMetaTagAttributeLength = 2000; | 217 const size_t kMaxMetaTagAttributeLength = 2000; |
216 | 218 |
217 } // namespace chrome | 219 } // namespace chrome |
218 | 220 |
219 #undef FPL | 221 #undef FPL |
OLD | NEW |