| 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 22 matching lines...) Expand all Loading... |
| 33 extern const wchar_t kBrowserResourcesDll[]; | 33 extern const wchar_t kBrowserResourcesDll[]; |
| 34 extern const FilePath::CharType kExtensionFileExtension[]; | 34 extern const FilePath::CharType kExtensionFileExtension[]; |
| 35 | 35 |
| 36 // filenames | 36 // filenames |
| 37 extern const FilePath::CharType kArchivedHistoryFilename[]; | 37 extern const FilePath::CharType kArchivedHistoryFilename[]; |
| 38 extern const FilePath::CharType kCacheDirname[]; | 38 extern const FilePath::CharType kCacheDirname[]; |
| 39 extern const FilePath::CharType kMediaCacheDirname[]; | 39 extern const FilePath::CharType kMediaCacheDirname[]; |
| 40 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; | 40 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; |
| 41 extern const FilePath::CharType kAppCacheDirname[]; | 41 extern const FilePath::CharType kAppCacheDirname[]; |
| 42 extern const wchar_t kChromePluginDataDirname[]; | 42 extern const wchar_t kChromePluginDataDirname[]; |
| 43 extern const FilePath::CharType kThemeImagesDirname[]; | 43 extern const FilePath::CharType kThemePackFilename[]; |
| 44 extern const FilePath::CharType kCookieFilename[]; | 44 extern const FilePath::CharType kCookieFilename[]; |
| 45 extern const FilePath::CharType kExtensionsCookieFilename[]; | 45 extern const FilePath::CharType kExtensionsCookieFilename[]; |
| 46 extern const FilePath::CharType kHistoryFilename[]; | 46 extern const FilePath::CharType kHistoryFilename[]; |
| 47 extern const FilePath::CharType kLocalStateFilename[]; | 47 extern const FilePath::CharType kLocalStateFilename[]; |
| 48 extern const FilePath::CharType kPreferencesFilename[]; | 48 extern const FilePath::CharType kPreferencesFilename[]; |
| 49 extern const FilePath::CharType kSafeBrowsingFilename[]; | 49 extern const FilePath::CharType kSafeBrowsingFilename[]; |
| 50 extern const FilePath::CharType kSingletonSocketFilename[]; | 50 extern const FilePath::CharType kSingletonSocketFilename[]; |
| 51 extern const FilePath::CharType kSingletonLockFilename[]; | 51 extern const FilePath::CharType kSingletonLockFilename[]; |
| 52 extern const FilePath::CharType kThumbnailsFilename[]; | 52 extern const FilePath::CharType kThumbnailsFilename[]; |
| 53 extern const FilePath::CharType kNewTabThumbnailsFilename[]; | 53 extern const FilePath::CharType kNewTabThumbnailsFilename[]; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 68 | 68 |
| 69 // The maximum number of characters of the document's title that we're willing | 69 // The maximum number of characters of the document's title that we're willing |
| 70 // to send to the browser process. | 70 // to send to the browser process. |
| 71 extern const size_t kMaxTitleChars; | 71 extern const size_t kMaxTitleChars; |
| 72 | 72 |
| 73 extern const bool kRecordModeEnabled; | 73 extern const bool kRecordModeEnabled; |
| 74 | 74 |
| 75 } // namespace chrome | 75 } // namespace chrome |
| 76 | 76 |
| 77 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 77 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |