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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; | 146 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; |
147 | 147 |
148 // filenames | 148 // filenames |
149 #if defined(OS_ANDROID) | 149 #if defined(OS_ANDROID) |
150 const base::FilePath::CharType kAndroidCacheFilename[] = FPL("AndroidCache"); | 150 const base::FilePath::CharType kAndroidCacheFilename[] = FPL("AndroidCache"); |
151 #endif | 151 #endif |
152 const base::FilePath::CharType kArchivedHistoryFilename[] = | 152 const base::FilePath::CharType kArchivedHistoryFilename[] = |
153 FPL("Archived History"); | 153 FPL("Archived History"); |
154 const base::FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); | 154 const base::FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); |
155 const base::FilePath::CharType kCacheDirname[] = FPL("Cache"); | 155 const base::FilePath::CharType kCacheDirname[] = FPL("Cache"); |
| 156 const base::FilePath::CharType kCookieFilename[] = FPL("Cookies"); |
156 const base::FilePath::CharType kCRLSetFilename[] = | 157 const base::FilePath::CharType kCRLSetFilename[] = |
157 FPL("Certificate Revocation Lists"); | 158 FPL("Certificate Revocation Lists"); |
158 const base::FilePath::CharType kCustomDictionaryFileName[] = | 159 const base::FilePath::CharType kCustomDictionaryFileName[] = |
159 FPL("Custom Dictionary.txt"); | 160 FPL("Custom Dictionary.txt"); |
160 const base::FilePath::CharType kExtensionActivityLogFilename[] = | 161 const base::FilePath::CharType kExtensionActivityLogFilename[] = |
161 FPL("Extension Activity"); | 162 FPL("Extension Activity"); |
162 const base::FilePath::CharType kExtensionsCookieFilename[] = | 163 const base::FilePath::CharType kExtensionsCookieFilename[] = |
163 FPL("Extension Cookies"); | 164 FPL("Extension Cookies"); |
164 const base::FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); | 165 const base::FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); |
165 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); | 166 const base::FilePath::CharType kFirstRunSentinel[] = FPL("First Run"); |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 | 258 |
258 // This GUID is associated with any 'don't ask me again' settings that the | 259 // This GUID is associated with any 'don't ask me again' settings that the |
259 // user can select for different file types. | 260 // user can select for different file types. |
260 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 261 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
261 const char kApplicationClientIDStringForAVScanning[] = | 262 const char kApplicationClientIDStringForAVScanning[] = |
262 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 263 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
263 | 264 |
264 } // namespace chrome | 265 } // namespace chrome |
265 | 266 |
266 #undef FPL | 267 #undef FPL |
OLD | NEW |