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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 extern const FilePath::CharType kSafeBrowsingFilename[]; | 51 extern const FilePath::CharType kSafeBrowsingFilename[]; |
52 extern const FilePath::CharType kSingletonSocketFilename[]; | 52 extern const FilePath::CharType kSingletonSocketFilename[]; |
53 extern const FilePath::CharType kSingletonLockFilename[]; | 53 extern const FilePath::CharType kSingletonLockFilename[]; |
54 extern const FilePath::CharType kThumbnailsFilename[]; | 54 extern const FilePath::CharType kThumbnailsFilename[]; |
55 extern const FilePath::CharType kNewTabThumbnailsFilename[]; | 55 extern const FilePath::CharType kNewTabThumbnailsFilename[]; |
56 extern const FilePath::CharType kTopSitesFilename[]; | 56 extern const FilePath::CharType kTopSitesFilename[]; |
57 extern const wchar_t kUserDataDirname[]; | 57 extern const wchar_t kUserDataDirname[]; |
58 extern const FilePath::CharType kUserScriptsDirname[]; | 58 extern const FilePath::CharType kUserScriptsDirname[]; |
59 extern const FilePath::CharType kWebDataFilename[]; | 59 extern const FilePath::CharType kWebDataFilename[]; |
60 extern const FilePath::CharType kBookmarksFileName[]; | 60 extern const FilePath::CharType kBookmarksFileName[]; |
61 extern const FilePath::CharType kPrivacyBlacklistFileName[]; | |
62 extern const FilePath::CharType kHistoryBookmarksFileName[]; | 61 extern const FilePath::CharType kHistoryBookmarksFileName[]; |
63 extern const FilePath::CharType kCustomDictionaryFileName[]; | 62 extern const FilePath::CharType kCustomDictionaryFileName[]; |
64 extern const FilePath::CharType kLoginDataFileName[]; | 63 extern const FilePath::CharType kLoginDataFileName[]; |
65 extern const FilePath::CharType kJumpListIconDirname[]; | 64 extern const FilePath::CharType kJumpListIconDirname[]; |
66 extern const FilePath::CharType kWebAppDirname[]; | 65 extern const FilePath::CharType kWebAppDirname[]; |
67 extern const FilePath::CharType kServiceStateFileName[]; | 66 extern const FilePath::CharType kServiceStateFileName[]; |
68 | 67 |
69 extern const unsigned int kMaxRendererProcessCount; | 68 extern const unsigned int kMaxRendererProcessCount; |
70 extern const int kStatsMaxThreads; | 69 extern const int kStatsMaxThreads; |
71 extern const int kStatsMaxCounters; | 70 extern const int kStatsMaxCounters; |
(...skipping 15 matching lines...) Expand all Loading... |
87 extern const int kHistogramSynchronizerReservedSequenceNumber; | 86 extern const int kHistogramSynchronizerReservedSequenceNumber; |
88 | 87 |
89 // The maximum number of session history entries per tab. | 88 // The maximum number of session history entries per tab. |
90 extern const int kMaxSessionHistoryEntries; | 89 extern const int kMaxSessionHistoryEntries; |
91 | 90 |
92 extern const wchar_t kChromiumRendererIdProperty[]; | 91 extern const wchar_t kChromiumRendererIdProperty[]; |
93 | 92 |
94 } // namespace chrome | 93 } // namespace chrome |
95 | 94 |
96 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 95 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |