| 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 "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 | 8 |
| 9 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
| 10 | 10 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 130 |
| 131 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; | 131 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; |
| 132 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; | 132 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; |
| 133 const char kInitialProfile[] = "Default"; | 133 const char kInitialProfile[] = "Default"; |
| 134 const char kMultiProfileDirPrefix[] = "Profile "; | 134 const char kMultiProfileDirPrefix[] = "Profile "; |
| 135 const base::FilePath::CharType kGuestProfileDir[] = FPL("Guest Profile"); | 135 const base::FilePath::CharType kGuestProfileDir[] = FPL("Guest Profile"); |
| 136 const base::FilePath::CharType kSystemProfileDir[] = FPL("System Profile"); | 136 const base::FilePath::CharType kSystemProfileDir[] = FPL("System Profile"); |
| 137 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; | 137 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; |
| 138 | 138 |
| 139 // filenames | 139 // filenames |
| 140 const base::FilePath::CharType kAffiliationDatabaseFileName[] = |
| 141 FPL("Affiliation Database"); |
| 140 const base::FilePath::CharType kCacheDirname[] = FPL("Cache"); | 142 const base::FilePath::CharType kCacheDirname[] = FPL("Cache"); |
| 141 const base::FilePath::CharType kChannelIDFilename[] = FPL("Origin Bound Certs"); | 143 const base::FilePath::CharType kChannelIDFilename[] = FPL("Origin Bound Certs"); |
| 142 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies"); | 144 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies"); |
| 143 const base::FilePath::CharType kCRLSetFilename[] = | 145 const base::FilePath::CharType kCRLSetFilename[] = |
| 144 FPL("Certificate Revocation Lists"); | 146 FPL("Certificate Revocation Lists"); |
| 145 const base::FilePath::CharType kCustomDictionaryFileName[] = | 147 const base::FilePath::CharType kCustomDictionaryFileName[] = |
| 146 FPL("Custom Dictionary.txt"); | 148 FPL("Custom Dictionary.txt"); |
| 147 const base::FilePath::CharType kExtensionActivityLogFilename[] = | 149 const base::FilePath::CharType kExtensionActivityLogFilename[] = |
| 148 FPL("Extension Activity"); | 150 FPL("Extension Activity"); |
| 149 const base::FilePath::CharType kExtensionsCookieFilename[] = | 151 const base::FilePath::CharType kExtensionsCookieFilename[] = |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 // user can select for different file types. | 250 // user can select for different file types. |
| 249 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 251 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
| 250 const char kApplicationClientIDStringForAVScanning[] = | 252 const char kApplicationClientIDStringForAVScanning[] = |
| 251 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 253 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
| 252 | 254 |
| 253 const size_t kMaxMetaTagAttributeLength = 2000; | 255 const size_t kMaxMetaTagAttributeLength = 2000; |
| 254 | 256 |
| 255 } // namespace chrome | 257 } // namespace chrome |
| 256 | 258 |
| 257 #undef FPL | 259 #undef FPL |
| OLD | NEW |