| 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 // A handful of resource-like constants related to the Chrome application. | 5 // A handful of resource-like constants related to the Chrome application. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ |
| 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ | 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ |
| 9 | 9 |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 extern const wchar_t kBrowserResourcesDll[]; | 24 extern const wchar_t kBrowserResourcesDll[]; |
| 25 extern const FilePath::CharType kExtensionFileExtension[]; | 25 extern const FilePath::CharType kExtensionFileExtension[]; |
| 26 | 26 |
| 27 // filenames | 27 // filenames |
| 28 extern const FilePath::CharType kArchivedHistoryFilename[]; | 28 extern const FilePath::CharType kArchivedHistoryFilename[]; |
| 29 extern const FilePath::CharType kCacheDirname[]; | 29 extern const FilePath::CharType kCacheDirname[]; |
| 30 extern const FilePath::CharType kMediaCacheDirname[]; | 30 extern const FilePath::CharType kMediaCacheDirname[]; |
| 31 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; | 31 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; |
| 32 extern const wchar_t kChromePluginDataDirname[]; | 32 extern const wchar_t kChromePluginDataDirname[]; |
| 33 extern const FilePath::CharType kCookieFilename[]; | 33 extern const FilePath::CharType kCookieFilename[]; |
| 34 extern const FilePath::CharType kExtensionsCookieFilename[]; |
| 34 extern const FilePath::CharType kHistoryFilename[]; | 35 extern const FilePath::CharType kHistoryFilename[]; |
| 35 extern const FilePath::CharType kLocalStateFilename[]; | 36 extern const FilePath::CharType kLocalStateFilename[]; |
| 36 extern const FilePath::CharType kPreferencesFilename[]; | 37 extern const FilePath::CharType kPreferencesFilename[]; |
| 37 extern const FilePath::CharType kSafeBrowsingFilename[]; | 38 extern const FilePath::CharType kSafeBrowsingFilename[]; |
| 38 extern const FilePath::CharType kSingletonSocketFilename[]; | 39 extern const FilePath::CharType kSingletonSocketFilename[]; |
| 39 extern const FilePath::CharType kThumbnailsFilename[]; | 40 extern const FilePath::CharType kThumbnailsFilename[]; |
| 40 extern const wchar_t kUserDataDirname[]; | 41 extern const wchar_t kUserDataDirname[]; |
| 41 extern const FilePath::CharType kUserScriptsDirname[]; | 42 extern const FilePath::CharType kUserScriptsDirname[]; |
| 42 extern const FilePath::CharType kWebDataFilename[]; | 43 extern const FilePath::CharType kWebDataFilename[]; |
| 43 extern const FilePath::CharType kBookmarksFileName[]; | 44 extern const FilePath::CharType kBookmarksFileName[]; |
| 44 extern const FilePath::CharType kHistoryBookmarksFileName[]; | 45 extern const FilePath::CharType kHistoryBookmarksFileName[]; |
| 45 extern const FilePath::CharType kCustomDictionaryFileName[]; | 46 extern const FilePath::CharType kCustomDictionaryFileName[]; |
| 46 | 47 |
| 47 extern const unsigned int kMaxRendererProcessCount; | 48 extern const unsigned int kMaxRendererProcessCount; |
| 48 extern const int kStatsMaxThreads; | 49 extern const int kStatsMaxThreads; |
| 49 extern const int kStatsMaxCounters; | 50 extern const int kStatsMaxCounters; |
| 50 | 51 |
| 51 extern const bool kRecordModeEnabled; | 52 extern const bool kRecordModeEnabled; |
| 52 | 53 |
| 53 } // namespace chrome | 54 } // namespace chrome |
| 54 | 55 |
| 55 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 56 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |