OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 // filenames | 54 // filenames |
55 #if defined(OS_ANDROID) | 55 #if defined(OS_ANDROID) |
56 extern const FilePath::CharType kAndroidCacheFilename[]; | 56 extern const FilePath::CharType kAndroidCacheFilename[]; |
57 #endif | 57 #endif |
58 extern const FilePath::CharType kArchivedHistoryFilename[]; | 58 extern const FilePath::CharType kArchivedHistoryFilename[]; |
59 extern const FilePath::CharType kBookmarksFileName[]; | 59 extern const FilePath::CharType kBookmarksFileName[]; |
60 extern const FilePath::CharType kCacheDirname[]; | 60 extern const FilePath::CharType kCacheDirname[]; |
61 extern const FilePath::CharType kCookieFilename[]; | 61 extern const FilePath::CharType kCookieFilename[]; |
62 extern const FilePath::CharType kCRLSetFilename[]; | 62 extern const FilePath::CharType kCRLSetFilename[]; |
63 extern const FilePath::CharType kCustomDictionaryFileName[]; | 63 extern const FilePath::CharType kCustomDictionaryFileName[]; |
64 extern const FilePath::CharType kExtensionActivityLogFilename[]; | |
65 extern const FilePath::CharType kExtensionsCookieFilename[]; | 64 extern const FilePath::CharType kExtensionsCookieFilename[]; |
66 extern const FilePath::CharType kFaviconsFilename[]; | 65 extern const FilePath::CharType kFaviconsFilename[]; |
67 extern const FilePath::CharType kFirstRunSentinel[]; | 66 extern const FilePath::CharType kFirstRunSentinel[]; |
68 extern const FilePath::CharType kHistoryFilename[]; | 67 extern const FilePath::CharType kHistoryFilename[]; |
69 extern const FilePath::CharType kJumpListIconDirname[]; | 68 extern const FilePath::CharType kJumpListIconDirname[]; |
70 extern const FilePath::CharType kLocalStateFilename[]; | 69 extern const FilePath::CharType kLocalStateFilename[]; |
71 extern const FilePath::CharType kLoginDataFileName[]; | 70 extern const FilePath::CharType kLoginDataFileName[]; |
72 extern const FilePath::CharType kManagedModePolicyFilename[]; | 71 extern const FilePath::CharType kManagedModePolicyFilename[]; |
73 extern const FilePath::CharType kMediaCacheDirname[]; | 72 extern const FilePath::CharType kMediaCacheDirname[]; |
74 extern const FilePath::CharType kNewTabThumbnailsFilename[]; | 73 extern const FilePath::CharType kNewTabThumbnailsFilename[]; |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 // Used by Metro Chrome to get information about the current tab. | 136 // Used by Metro Chrome to get information about the current tab. |
138 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; | 137 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; |
139 // Used by Metro Chrome to store activation state. | 138 // Used by Metro Chrome to store activation state. |
140 extern const wchar_t kMetroRegistryPath[]; | 139 extern const wchar_t kMetroRegistryPath[]; |
141 extern const wchar_t kLaunchModeValue[]; | 140 extern const wchar_t kLaunchModeValue[]; |
142 #endif | 141 #endif |
143 | 142 |
144 } // namespace chrome | 143 } // namespace chrome |
145 | 144 |
146 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 145 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |