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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 #if defined(OS_WIN) | 126 #if defined(OS_WIN) |
127 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); | 127 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); |
128 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; | 128 const wchar_t kStatusTrayWindowClass[] = L"Chrome_StatusTrayWindow"; |
129 #endif // defined(OS_WIN) | 129 #endif // defined(OS_WIN) |
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 wchar_t kBrowserResourcesDll[] = L"chrome.dll"; | 137 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; |
137 | 138 |
138 // filenames | 139 // filenames |
139 const base::FilePath::CharType kCacheDirname[] = FPL("Cache"); | 140 const base::FilePath::CharType kCacheDirname[] = FPL("Cache"); |
140 const base::FilePath::CharType kChannelIDFilename[] = FPL("Origin Bound Certs"); | 141 const base::FilePath::CharType kChannelIDFilename[] = FPL("Origin Bound Certs"); |
141 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies"); | 142 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies"); |
142 const base::FilePath::CharType kCRLSetFilename[] = | 143 const base::FilePath::CharType kCRLSetFilename[] = |
143 FPL("Certificate Revocation Lists"); | 144 FPL("Certificate Revocation Lists"); |
144 const base::FilePath::CharType kCustomDictionaryFileName[] = | 145 const base::FilePath::CharType kCustomDictionaryFileName[] = |
145 FPL("Custom Dictionary.txt"); | 146 FPL("Custom Dictionary.txt"); |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 // user can select for different file types. | 246 // user can select for different file types. |
246 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 247 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
247 const char kApplicationClientIDStringForAVScanning[] = | 248 const char kApplicationClientIDStringForAVScanning[] = |
248 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 249 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
249 | 250 |
250 const size_t kMaxMetaTagAttributeLength = 2000; | 251 const size_t kMaxMetaTagAttributeLength = 2000; |
251 | 252 |
252 } // namespace chrome | 253 } // namespace chrome |
253 | 254 |
254 #undef FPL | 255 #undef FPL |
OLD | NEW |