| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; | 77 const wchar_t kBrowserResourcesDll[] = L"chrome.dll"; |
| 78 const FilePath::CharType kExtensionFileExtension[] = FPL("crx"); | 78 const FilePath::CharType kExtensionFileExtension[] = FPL("crx"); |
| 79 | 79 |
| 80 // filenames | 80 // filenames |
| 81 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); | 81 const FilePath::CharType kArchivedHistoryFilename[] = FPL("Archived History"); |
| 82 const FilePath::CharType kCacheDirname[] = FPL("Cache"); | 82 const FilePath::CharType kCacheDirname[] = FPL("Cache"); |
| 83 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); | 83 const FilePath::CharType kMediaCacheDirname[] = FPL("Media Cache"); |
| 84 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = | 84 const FilePath::CharType kOffTheRecordMediaCacheDirname[] = |
| 85 FPL("Incognito Media Cache"); | 85 FPL("Incognito Media Cache"); |
| 86 const FilePath::CharType kAppCacheDirname[] = FPL("Application Cache"); | 86 const FilePath::CharType kAppCacheDirname[] = FPL("Application Cache"); |
| 87 const wchar_t kChromePluginDataDirname[] = L"Plugin Data"; | 87 const FilePath::CharType kChromePluginDataDirname[] = FPL("Plugin Data"); |
| 88 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); | 88 const FilePath::CharType kThemePackFilename[] = FPL("Cached Theme.pak"); |
| 89 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); | 89 const FilePath::CharType kCookieFilename[] = FPL("Cookies"); |
| 90 const FilePath::CharType kExtensionsCookieFilename[] = FPL("Extension Cookies"); | 90 const FilePath::CharType kExtensionsCookieFilename[] = FPL("Extension Cookies"); |
| 91 const FilePath::CharType kHistoryFilename[] = FPL("History"); | 91 const FilePath::CharType kHistoryFilename[] = FPL("History"); |
| 92 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 92 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
| 93 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 93 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
| 94 const FilePath::CharType kSafeBrowsingFilename[] = FPL("Safe Browsing"); | 94 const FilePath::CharType kSafeBrowsingFilename[] = FPL("Safe Browsing"); |
| 95 // WARNING: SingletonSocket can't contain spaces, because otherwise | 95 // WARNING: SingletonSocket can't contain spaces, because otherwise |
| 96 // chrome_process_util_linux would be broken. | 96 // chrome_process_util_linux would be broken. |
| 97 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); | 97 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); |
| (...skipping 29 matching lines...) Expand all Loading... |
| 127 const bool kRecordModeEnabled = true; | 127 const bool kRecordModeEnabled = true; |
| 128 #else | 128 #else |
| 129 const bool kRecordModeEnabled = false; | 129 const bool kRecordModeEnabled = false; |
| 130 #endif | 130 #endif |
| 131 | 131 |
| 132 const int kHistogramSynchronizerReservedSequenceNumber = 0; | 132 const int kHistogramSynchronizerReservedSequenceNumber = 0; |
| 133 | 133 |
| 134 } // namespace chrome | 134 } // namespace chrome |
| 135 | 135 |
| 136 #undef FPL | 136 #undef FPL |
| OLD | NEW |