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 wchar_t kNaClAppName[]; | 34 extern const wchar_t kNaClAppName[]; |
35 extern const FilePath::CharType kExtensionFileExtension[]; | 35 extern const FilePath::CharType kExtensionFileExtension[]; |
36 | 36 |
37 // filenames | 37 // filenames |
38 extern const FilePath::CharType kArchivedHistoryFilename[]; | 38 extern const FilePath::CharType kArchivedHistoryFilename[]; |
39 extern const FilePath::CharType kCacheDirname[]; | 39 extern const FilePath::CharType kCacheDirname[]; |
40 extern const FilePath::CharType kMediaCacheDirname[]; | 40 extern const FilePath::CharType kMediaCacheDirname[]; |
41 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; | 41 extern const FilePath::CharType kOffTheRecordMediaCacheDirname[]; |
42 extern const FilePath::CharType kAppCacheDirname[]; | 42 extern const FilePath::CharType kAppCacheDirname[]; |
43 extern const wchar_t kChromePluginDataDirname[]; | 43 extern const FilePath::CharType kChromePluginDataDirname[]; |
44 extern const FilePath::CharType kThemePackFilename[]; | 44 extern const FilePath::CharType kThemePackFilename[]; |
45 extern const FilePath::CharType kCookieFilename[]; | 45 extern const FilePath::CharType kCookieFilename[]; |
46 extern const FilePath::CharType kExtensionsCookieFilename[]; | 46 extern const FilePath::CharType kExtensionsCookieFilename[]; |
47 extern const FilePath::CharType kHistoryFilename[]; | 47 extern const FilePath::CharType kHistoryFilename[]; |
48 extern const FilePath::CharType kLocalStateFilename[]; | 48 extern const FilePath::CharType kLocalStateFilename[]; |
49 extern const FilePath::CharType kPreferencesFilename[]; | 49 extern const FilePath::CharType kPreferencesFilename[]; |
50 extern const FilePath::CharType kSafeBrowsingFilename[]; | 50 extern const FilePath::CharType kSafeBrowsingFilename[]; |
51 extern const FilePath::CharType kSingletonSocketFilename[]; | 51 extern const FilePath::CharType kSingletonSocketFilename[]; |
52 extern const FilePath::CharType kSingletonLockFilename[]; | 52 extern const FilePath::CharType kSingletonLockFilename[]; |
53 extern const FilePath::CharType kThumbnailsFilename[]; | 53 extern const FilePath::CharType kThumbnailsFilename[]; |
(...skipping 21 matching lines...) Expand all Loading... |
75 // but high enough that a web site can abuse location.hash for a little storage. | 75 // but high enough that a web site can abuse location.hash for a little storage. |
76 extern const size_t kMaxURLChars; | 76 extern const size_t kMaxURLChars; |
77 | 77 |
78 extern const bool kRecordModeEnabled; | 78 extern const bool kRecordModeEnabled; |
79 | 79 |
80 extern const int kHistogramSynchronizerReservedSequenceNumber; | 80 extern const int kHistogramSynchronizerReservedSequenceNumber; |
81 | 81 |
82 } // namespace chrome | 82 } // namespace chrome |
83 | 83 |
84 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 84 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |