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