| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 kExtensionActivityLogFilename[] = | 143 const base::FilePath::CharType kExtensionActivityLogFilename[] = |
| 144 FPL("Extension Activity"); | 144 FPL("Extension Activity"); |
| 145 const base::FilePath::CharType kExtensionsCookieFilename[] = | 145 const base::FilePath::CharType kExtensionsCookieFilename[] = |
| 146 FPL("Extension Cookies"); | 146 FPL("Extension Cookies"); |
| 147 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); | 147 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); |
| 148 const base::FilePath::CharType kFeatureEngagementTrackerStorageDirname[] = |
| 149 FPL("Feature Engagement Tracker"); |
| 148 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); | 150 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); |
| 149 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 151 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
| 150 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); | 152 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); |
| 151 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 153 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
| 152 const base::FilePath::CharType kNetworkPersistentStateFilename[] = | 154 const base::FilePath::CharType kNetworkPersistentStateFilename[] = |
| 153 FPL("Network Persistent State"); | 155 FPL("Network Persistent State"); |
| 154 const base::FilePath::CharType kOfflinePageArchivesDirname[] = | 156 const base::FilePath::CharType kOfflinePageArchivesDirname[] = |
| 155 FPL("Offline Pages/archives"); | 157 FPL("Offline Pages/archives"); |
| 156 const base::FilePath::CharType kOfflinePageMetadataDirname[] = | 158 const base::FilePath::CharType kOfflinePageMetadataDirname[] = |
| 157 FPL("Offline Pages/metadata"); | 159 FPL("Offline Pages/metadata"); |
| (...skipping 52 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 |