| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); | 70 const FilePath::CharType kThumbnailsFilename[] = FPL("Thumbnails"); |
| 71 const wchar_t kUserDataDirname[] = L"User Data"; | 71 const wchar_t kUserDataDirname[] = L"User Data"; |
| 72 const FilePath::CharType kUserScriptsDirname[] = FPL("User Scripts"); | 72 const FilePath::CharType kUserScriptsDirname[] = FPL("User Scripts"); |
| 73 const FilePath::CharType kWebDataFilename[] = FPL("Web Data"); | 73 const FilePath::CharType kWebDataFilename[] = FPL("Web Data"); |
| 74 const FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); | 74 const FilePath::CharType kBookmarksFileName[] = FPL("Bookmarks"); |
| 75 const FilePath::CharType kHistoryBookmarksFileName[] = | 75 const FilePath::CharType kHistoryBookmarksFileName[] = |
| 76 FPL("Bookmarks From History"); | 76 FPL("Bookmarks From History"); |
| 77 const FilePath::CharType kCustomDictionaryFileName[] = | 77 const FilePath::CharType kCustomDictionaryFileName[] = |
| 78 FPL("Custom Dictionary.txt"); | 78 FPL("Custom Dictionary.txt"); |
| 79 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); | 79 const FilePath::CharType kLoginDataFileName[] = FPL("Login Data"); |
| 80 const FilePath::CharType kJumpListIconDirname[] = FPL("JumpListIcons"); |
| 80 | 81 |
| 81 // This number used to be limited to 32 in the past (see b/535234). | 82 // This number used to be limited to 32 in the past (see b/535234). |
| 82 const unsigned int kMaxRendererProcessCount = 42; | 83 const unsigned int kMaxRendererProcessCount = 42; |
| 83 const int kStatsMaxThreads = 32; | 84 const int kStatsMaxThreads = 32; |
| 84 const int kStatsMaxCounters = 300; | 85 const int kStatsMaxCounters = 300; |
| 85 | 86 |
| 86 const size_t kMaxTitleChars = 4 * 1024; | 87 const size_t kMaxTitleChars = 4 * 1024; |
| 87 | 88 |
| 88 // We don't enable record mode in the released product because users could | 89 // We don't enable record mode in the released product because users could |
| 89 // potentially be tricked into running a product in record mode without | 90 // potentially be tricked into running a product in record mode without |
| 90 // knowing it. Enable in debug builds. Playback mode is allowed always, | 91 // knowing it. Enable in debug builds. Playback mode is allowed always, |
| 91 // because it is useful for testing and not hazardous by itself. | 92 // because it is useful for testing and not hazardous by itself. |
| 92 #ifndef NDEBUG | 93 #ifndef NDEBUG |
| 93 const bool kRecordModeEnabled = true; | 94 const bool kRecordModeEnabled = true; |
| 94 #else | 95 #else |
| 95 const bool kRecordModeEnabled = false; | 96 const bool kRecordModeEnabled = false; |
| 96 #endif | 97 #endif |
| 97 | 98 |
| 98 } // namespace chrome | 99 } // namespace chrome |
| OLD | NEW |