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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 extern const FilePath::CharType kCookieFilename[]; | 46 extern const FilePath::CharType kCookieFilename[]; |
47 extern const FilePath::CharType kExtensionsCookieFilename[]; | 47 extern const FilePath::CharType kExtensionsCookieFilename[]; |
48 extern const FilePath::CharType kHistoryFilename[]; | 48 extern const FilePath::CharType kHistoryFilename[]; |
49 extern const FilePath::CharType kLocalStateFilename[]; | 49 extern const FilePath::CharType kLocalStateFilename[]; |
50 extern const FilePath::CharType kPreferencesFilename[]; | 50 extern const FilePath::CharType kPreferencesFilename[]; |
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 wchar_t kUserDataDirname[]; | 57 extern const wchar_t kUserDataDirname[]; |
57 extern const FilePath::CharType kUserScriptsDirname[]; | 58 extern const FilePath::CharType kUserScriptsDirname[]; |
58 extern const FilePath::CharType kWebDataFilename[]; | 59 extern const FilePath::CharType kWebDataFilename[]; |
59 extern const FilePath::CharType kBookmarksFileName[]; | 60 extern const FilePath::CharType kBookmarksFileName[]; |
60 extern const FilePath::CharType kPrivacyBlacklistFileName[]; | 61 extern const FilePath::CharType kPrivacyBlacklistFileName[]; |
61 extern const FilePath::CharType kHistoryBookmarksFileName[]; | 62 extern const FilePath::CharType kHistoryBookmarksFileName[]; |
62 extern const FilePath::CharType kCustomDictionaryFileName[]; | 63 extern const FilePath::CharType kCustomDictionaryFileName[]; |
63 extern const FilePath::CharType kLoginDataFileName[]; | 64 extern const FilePath::CharType kLoginDataFileName[]; |
64 extern const FilePath::CharType kJumpListIconDirname[]; | 65 extern const FilePath::CharType kJumpListIconDirname[]; |
65 extern const FilePath::CharType kWebAppDirname[]; | 66 extern const FilePath::CharType kWebAppDirname[]; |
(...skipping 20 matching lines...) Expand all Loading... |
86 extern const int kHistogramSynchronizerReservedSequenceNumber; | 87 extern const int kHistogramSynchronizerReservedSequenceNumber; |
87 | 88 |
88 // The maximum number of session history entries per tab. | 89 // The maximum number of session history entries per tab. |
89 extern const int kMaxSessionHistoryEntries; | 90 extern const int kMaxSessionHistoryEntries; |
90 | 91 |
91 extern const wchar_t kChromiumRendererIdProperty[]; | 92 extern const wchar_t kChromiumRendererIdProperty[]; |
92 | 93 |
93 } // namespace chrome | 94 } // namespace chrome |
94 | 95 |
95 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 96 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |