| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 const FilePath::CharType kHistoryFilename[] = FPL("History"); | 92 const FilePath::CharType kHistoryFilename[] = FPL("History"); |
| 93 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); | 93 const FilePath::CharType kLocalStateFilename[] = FPL("Local State"); |
| 94 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); | 94 const FilePath::CharType kPreferencesFilename[] = FPL("Preferences"); |
| 95 const FilePath::CharType kSafeBrowsingFilename[] = FPL("Safe Browsing"); | 95 const FilePath::CharType kSafeBrowsingFilename[] = FPL("Safe Browsing"); |
| 96 // WARNING: SingletonSocket can't contain spaces, because otherwise | 96 // WARNING: SingletonSocket can't contain spaces, because otherwise |
| 97 // chrome_process_util_linux would be broken. | 97 // chrome_process_util_linux would be broken. |
| 98 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); | 98 const FilePath::CharType kSingletonSocketFilename[] = FPL("SingletonSocket"); |
| 99 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); | 99 const FilePath::CharType kSingletonLockFilename[] = FPL("SingletonLock"); |
| 100 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); | 100 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); |
| 101 const FilePath::CharType kNewTabThumbnailsFilename[] = FPL("Top Thumbnails"); | 101 const FilePath::CharType kNewTabThumbnailsFilename[] = FPL("Top Thumbnails"); |
| 102 const FilePath::CharType kTopSitesFilename[] = FPL("Top Sites"); |
| 102 const wchar_t kUserDataDirname[] = L"User Data"; | 103 const wchar_t kUserDataDirname[] = L"User Data"; |
| 103 const FilePath::CharType kUserScriptsDirname[] = FPL("User Scripts"); | 104 const FilePath::CharType kUserScriptsDirname[] = FPL("User Scripts"); |
| 104 const FilePath::CharType kWebDataFilename[] = FPL("Web Data"); | 105 const FilePath::CharType kWebDataFilename[] = FPL("Web Data"); |
| 105 const FilePath::CharType kPrivacyBlacklistFileName[] = FPL("Privacy Blacklist"); | 106 const FilePath::CharType kPrivacyBlacklistFileName[] = FPL("Privacy Blacklist"); |
| 106 const FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); | 107 const FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); |
| 107 const FilePath::CharType kHistoryBookmarksFileName[] = | 108 const FilePath::CharType kHistoryBookmarksFileName[] = |
| 108 FPL("Bookmarks From History"); | 109 FPL("Bookmarks From History"); |
| 109 const FilePath::CharType kCustomDictionaryFileName[] = | 110 const FilePath::CharType kCustomDictionaryFileName[] = |
| 110 FPL("Custom Dictionary.txt"); | 111 FPL("Custom Dictionary.txt"); |
| 111 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); | 112 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 134 | 135 |
| 135 const int kHistogramSynchronizerReservedSequenceNumber = 0; | 136 const int kHistogramSynchronizerReservedSequenceNumber = 0; |
| 136 | 137 |
| 137 const int kMaxSessionHistoryEntries = 50; | 138 const int kMaxSessionHistoryEntries = 50; |
| 138 | 139 |
| 139 const wchar_t kChromiumRendererIdProperty[] = L"ChromiumRendererId"; | 140 const wchar_t kChromiumRendererIdProperty[] = L"ChromiumRendererId"; |
| 140 | 141 |
| 141 } // namespace chrome | 142 } // namespace chrome |
| 142 | 143 |
| 143 #undef FPL | 144 #undef FPL |
| OLD | NEW |