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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 const char kMultiProfileDirPrefix[] = "Profile "; | 128 const char kMultiProfileDirPrefix[] = "Profile "; |
129 const base::FilePath::CharType kGuestProfileDir[] = FPL("Guest Profile"); | 129 const base::FilePath::CharType kGuestProfileDir[] = FPL("Guest Profile"); |
130 const base::FilePath::CharType kSystemProfileDir[] = FPL("System Profile"); | 130 const base::FilePath::CharType kSystemProfileDir[] = FPL("System Profile"); |
131 | 131 |
132 // filenames | 132 // filenames |
133 const base::FilePath::CharType kCacheDirname[] = FPL("Cache"); | 133 const base::FilePath::CharType kCacheDirname[] = FPL("Cache"); |
134 const base::FilePath::CharType kChannelIDFilename[] = FPL("Origin Bound Certs"); | 134 const base::FilePath::CharType kChannelIDFilename[] = FPL("Origin Bound Certs"); |
135 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies"); | 135 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies"); |
136 const base::FilePath::CharType kCRLSetFilename[] = | 136 const base::FilePath::CharType kCRLSetFilename[] = |
137 FPL("Certificate Revocation Lists"); | 137 FPL("Certificate Revocation Lists"); |
138 const base::FilePath::CharType kCustomDictionaryFileName[] = | 138 //const base::FilePath::CharType kCustomDictionaryFileName[] = |
139 FPL("Custom Dictionary.txt"); | 139 // FPL("Custom Dictionary.txt"); |
140 const base::FilePath::CharType kExtensionActivityLogFilename[] = | 140 const base::FilePath::CharType kExtensionActivityLogFilename[] = |
141 FPL("Extension Activity"); | 141 FPL("Extension Activity"); |
142 const base::FilePath::CharType kExtensionsCookieFilename[] = | 142 const base::FilePath::CharType kExtensionsCookieFilename[] = |
143 FPL("Extension Cookies"); | 143 FPL("Extension Cookies"); |
144 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); | 144 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); |
145 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); | 145 const base::FilePath::CharType kGCMStoreDirname[] = FPL("GCM Store"); |
146 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 146 const base::FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
147 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); | 147 const base::FilePath::CharType kLocalStorePoolName[] = FPL("LocalStorePool"); |
148 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 148 const base::FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
149 const base::FilePath::CharType kNetworkPersistentStateFilename[] = | 149 const base::FilePath::CharType kNetworkPersistentStateFilename[] = |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 // user can select for different file types. | 218 // user can select for different file types. |
219 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 219 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
220 const char kApplicationClientIDStringForAVScanning[] = | 220 const char kApplicationClientIDStringForAVScanning[] = |
221 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 221 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
222 | 222 |
223 const size_t kMaxMetaTagAttributeLength = 2000; | 223 const size_t kMaxMetaTagAttributeLength = 2000; |
224 | 224 |
225 } // namespace chrome | 225 } // namespace chrome |
226 | 226 |
227 #undef FPL | 227 #undef FPL |
OLD | NEW |