OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 16 matching lines...) Expand all Loading... |
27 #if defined(OS_MACOSX) | 27 #if defined(OS_MACOSX) |
28 extern const FilePath::CharType kFrameworkName[]; | 28 extern const FilePath::CharType kFrameworkName[]; |
29 #endif | 29 #endif |
30 extern const wchar_t kBrowserAppName[]; | 30 extern const wchar_t kBrowserAppName[]; |
31 #if defined(OS_WIN) | 31 #if defined(OS_WIN) |
32 extern const wchar_t kStatusTrayWindowClass[]; | 32 extern const wchar_t kStatusTrayWindowClass[]; |
33 #endif // defined(OS_WIN) | 33 #endif // defined(OS_WIN) |
34 extern const wchar_t kMessageWindowClass[]; | 34 extern const wchar_t kMessageWindowClass[]; |
35 extern const wchar_t kCrashReportLog[]; | 35 extern const wchar_t kCrashReportLog[]; |
36 extern const wchar_t kTestingInterfaceDLL[]; | 36 extern const wchar_t kTestingInterfaceDLL[]; |
37 extern const char kNotSignedInProfile[]; | 37 extern const char kInitialProfile[]; |
38 extern const char kMultiProfileDirPrefix[]; | 38 extern const char kMultiProfileDirPrefix[]; |
39 extern const char kStatsFilename[]; | 39 extern const char kStatsFilename[]; |
40 extern const wchar_t kBrowserResourcesDll[]; | 40 extern const wchar_t kBrowserResourcesDll[]; |
41 extern const wchar_t kNaClAppName[]; | 41 extern const wchar_t kNaClAppName[]; |
42 extern const FilePath::CharType kExtensionFileExtension[]; | 42 extern const FilePath::CharType kExtensionFileExtension[]; |
43 extern const FilePath::CharType kExtensionKeyFileExtension[]; | 43 extern const FilePath::CharType kExtensionKeyFileExtension[]; |
44 | 44 |
45 // filenames | 45 // filenames |
46 extern const FilePath::CharType kArchivedHistoryFilename[]; | 46 extern const FilePath::CharType kArchivedHistoryFilename[]; |
47 extern const FilePath::CharType kCacheDirname[]; | 47 extern const FilePath::CharType kCacheDirname[]; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 // dismissed, display an option to suppress future message boxes from this | 95 // dismissed, display an option to suppress future message boxes from this |
96 // contents. | 96 // contents. |
97 extern const int kJavascriptMessageExpectedDelay; | 97 extern const int kJavascriptMessageExpectedDelay; |
98 | 98 |
99 // Are touch icons enabled? False by default. | 99 // Are touch icons enabled? False by default. |
100 extern const bool kEnableTouchIcon; | 100 extern const bool kEnableTouchIcon; |
101 | 101 |
102 } // namespace chrome | 102 } // namespace chrome |
103 | 103 |
104 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 104 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |