| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/file_path.h" | 7 #include "base/file_path.h" |
| 8 | 8 |
| 9 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
| 10 | 10 |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 const FilePath::CharType kExtensionKeyFileExtension[] = FPL(".pem"); | 122 const FilePath::CharType kExtensionKeyFileExtension[] = FPL(".pem"); |
| 123 | 123 |
| 124 // filenames | 124 // filenames |
| 125 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); | 125 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); |
| 126 const FilePath::CharType kCacheDirname[] = FPL("Cache"); | 126 const FilePath::CharType kCacheDirname[] = FPL("Cache"); |
| 127 const FilePath::CharType kCRLSetFilename[] = | 127 const FilePath::CharType kCRLSetFilename[] = |
| 128 FPL("Certificate Revocation Lists"); | 128 FPL("Certificate Revocation Lists"); |
| 129 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 129 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
| 130 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = | 130 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = |
| 131 FPL("Incognito Media Cache"); | 131 FPL("Incognito Media Cache"); |
| 132 const FilePath::CharType kAppCacheDirname[] = FPL("Application Cache"); | |
| 133 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); | 132 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); |
| 134 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); | 133 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); |
| 135 const FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); | 134 const FilePath::CharType kOBCertFilename[] = FPL("Origin Bound Certs"); |
| 136 const FilePath::CharType kExtensionsCookieFilename[] = FPL("Extension Cookies"); | 135 const FilePath::CharType kExtensionsCookieFilename[] = FPL("Extension Cookies"); |
| 137 const FilePath::CharType kIsolatedAppStateDirname[] = FPL("Isolated Apps"); | 136 const FilePath::CharType kIsolatedAppStateDirname[] = FPL("Isolated Apps"); |
| 138 const FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); | 137 const FilePath::CharType kFaviconsFilename[] = FPL("Favicons"); |
| 139 const FilePath::CharType kHistoryFilename[] = FPL("History"); | 138 const FilePath::CharType kHistoryFilename[] = FPL("History"); |
| 140 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 139 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
| 141 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 140 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
| 142 const FilePath::CharType kSafeBrowsingBaseFilename[] = FPL("Safe Browsing"); | 141 const FilePath::CharType kSafeBrowsingBaseFilename[] = FPL("Safe Browsing"); |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 #endif | 181 #endif |
| 183 | 182 |
| 184 #if defined(OS_WIN) | 183 #if defined(OS_WIN) |
| 185 // This is used by the PreRead experiment. | 184 // This is used by the PreRead experiment. |
| 186 const char kPreReadEnvironmentVariable[] = "CHROME_PRE_READ_EXPERIMENT"; | 185 const char kPreReadEnvironmentVariable[] = "CHROME_PRE_READ_EXPERIMENT"; |
| 187 #endif | 186 #endif |
| 188 | 187 |
| 189 } // namespace chrome | 188 } // namespace chrome |
| 190 | 189 |
| 191 #undef FPL | 190 #undef FPL |
| OLD | NEW |