| 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/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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 #endif | 191 #endif |
| 193 | 192 |
| 194 #if defined(OS_WIN) | 193 #if defined(OS_WIN) |
| 195 // This is used by the PreRead experiment. | 194 // This is used by the PreRead experiment. |
| 196 const char kPreReadEnvironmentVariable[] = "CHROME_PRE_READ_EXPERIMENT"; | 195 const char kPreReadEnvironmentVariable[] = "CHROME_PRE_READ_EXPERIMENT"; |
| 197 #endif | 196 #endif |
| 198 | 197 |
| 199 } // namespace chrome | 198 } // namespace chrome |
| 200 | 199 |
| 201 #undef FPL | 200 #undef FPL |
| OLD | NEW |