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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
45 extern const wchar_t kCrashReportLog[]; | 45 extern const wchar_t kCrashReportLog[]; |
46 extern const wchar_t kTestingInterfaceDLL[]; | 46 extern const wchar_t kTestingInterfaceDLL[]; |
47 extern const char kInitialProfile[]; | 47 extern const char kInitialProfile[]; |
48 extern const char kMultiProfileDirPrefix[]; | 48 extern const char kMultiProfileDirPrefix[]; |
49 extern const wchar_t kBrowserResourcesDll[]; | 49 extern const wchar_t kBrowserResourcesDll[]; |
50 extern const wchar_t kNaClAppName[]; | 50 extern const wchar_t kNaClAppName[]; |
51 extern const FilePath::CharType kExtensionFileExtension[]; | 51 extern const FilePath::CharType kExtensionFileExtension[]; |
52 extern const FilePath::CharType kExtensionKeyFileExtension[]; | 52 extern const FilePath::CharType kExtensionKeyFileExtension[]; |
53 | 53 |
54 // filenames | 54 // filenames |
55 extern const FilePath::CharType kActivityLogFilename[]; | |
Eric Dingle
2012/12/13 20:37:34
Might be wise to use kExtensionActivityLogFilename
felt
2012/12/15 02:51:52
Done.
| |
55 #if defined(OS_ANDROID) | 56 #if defined(OS_ANDROID) |
56 extern const FilePath::CharType kAndroidCacheFilename[]; | 57 extern const FilePath::CharType kAndroidCacheFilename[]; |
57 #endif | 58 #endif |
58 extern const FilePath::CharType kArchivedHistoryFilename[]; | 59 extern const FilePath::CharType kArchivedHistoryFilename[]; |
59 extern const FilePath::CharType kBookmarksFileName[]; | 60 extern const FilePath::CharType kBookmarksFileName[]; |
60 extern const FilePath::CharType kCacheDirname[]; | 61 extern const FilePath::CharType kCacheDirname[]; |
61 extern const FilePath::CharType kCookieFilename[]; | 62 extern const FilePath::CharType kCookieFilename[]; |
62 extern const FilePath::CharType kCRLSetFilename[]; | 63 extern const FilePath::CharType kCRLSetFilename[]; |
63 extern const FilePath::CharType kCustomDictionaryFileName[]; | 64 extern const FilePath::CharType kCustomDictionaryFileName[]; |
64 extern const FilePath::CharType kExtensionsCookieFilename[]; | 65 extern const FilePath::CharType kExtensionsCookieFilename[]; |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
136 // Used by Metro Chrome to get information about the current tab. | 137 // Used by Metro Chrome to get information about the current tab. |
137 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; | 138 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; |
138 // Used by Metro Chrome to store activation state. | 139 // Used by Metro Chrome to store activation state. |
139 extern const wchar_t kMetroRegistryPath[]; | 140 extern const wchar_t kMetroRegistryPath[]; |
140 extern const wchar_t kLaunchModeValue[]; | 141 extern const wchar_t kLaunchModeValue[]; |
141 #endif | 142 #endif |
142 | 143 |
143 } // namespace chrome | 144 } // namespace chrome |
144 | 145 |
145 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 146 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |