| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 extern const wchar_t kNaClAppName[]; | 37 extern const wchar_t kNaClAppName[]; |
| 38 extern const FilePath::CharType kExtensionFileExtension[]; | 38 extern const FilePath::CharType kExtensionFileExtension[]; |
| 39 extern const FilePath::CharType kExtensionKeyFileExtension[]; | 39 extern const FilePath::CharType kExtensionKeyFileExtension[]; |
| 40 | 40 |
| 41 // filenames | 41 // filenames |
| 42 extern const FilePath::CharType kArchivedHistoryFilename[]; | 42 extern const FilePath::CharType kArchivedHistoryFilename[]; |
| 43 extern const FilePath::CharType kCacheDirname[]; | 43 extern const FilePath::CharType kCacheDirname[]; |
| 44 extern const FilePath::CharType kMediaCacheDirname[]; | 44 extern const FilePath::CharType kMediaCacheDirname[]; |
| 45 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; | 45 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; |
| 46 extern const FilePath::CharType kAppCacheDirname[]; | 46 extern const FilePath::CharType kAppCacheDirname[]; |
| 47 extern const FilePath::CharType kChromePluginDataDirname[]; | |
| 48 extern const FilePath::CharType kThemePackFilename[]; | 47 extern const FilePath::CharType kThemePackFilename[]; |
| 49 extern const FilePath::CharType kCookieFilename[]; | 48 extern const FilePath::CharType kCookieFilename[]; |
| 50 extern const FilePath::CharType kExtensionsCookieFilename[]; | 49 extern const FilePath::CharType kExtensionsCookieFilename[]; |
| 51 extern const FilePath::CharType kFaviconsFilename[]; | 50 extern const FilePath::CharType kFaviconsFilename[]; |
| 52 extern const FilePath::CharType kHistoryFilename[]; | 51 extern const FilePath::CharType kHistoryFilename[]; |
| 53 extern const FilePath::CharType kLocalStateFilename[]; | 52 extern const FilePath::CharType kLocalStateFilename[]; |
| 54 extern const FilePath::CharType kPreferencesFilename[]; | 53 extern const FilePath::CharType kPreferencesFilename[]; |
| 55 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; | 54 extern const FilePath::CharType kSafeBrowsingBaseFilename[]; |
| 56 extern const FilePath::CharType kSafeBrowsingPhishingModelFilename[]; | 55 extern const FilePath::CharType kSafeBrowsingPhishingModelFilename[]; |
| 57 extern const FilePath::CharType kSingletonCookieFilename[]; | 56 extern const FilePath::CharType kSingletonCookieFilename[]; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 // The maximum number of session history entries per tab. | 90 // The maximum number of session history entries per tab. |
| 92 extern const int kMaxSessionHistoryEntries; | 91 extern const int kMaxSessionHistoryEntries; |
| 93 | 92 |
| 94 // The language code used when the language of a page could not be detected. | 93 // The language code used when the language of a page could not be detected. |
| 95 // (Matches what the CLD -Compact Language Detection- library reports.) | 94 // (Matches what the CLD -Compact Language Detection- library reports.) |
| 96 extern const char* const kUnknownLanguageCode; | 95 extern const char* const kUnknownLanguageCode; |
| 97 | 96 |
| 98 } // namespace chrome | 97 } // namespace chrome |
| 99 | 98 |
| 100 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 99 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |