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/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 extern const base::FilePath::CharType kThumbnailsFilename[]; | 86 extern const base::FilePath::CharType kThumbnailsFilename[]; |
87 extern const base::FilePath::CharType kTopSitesFilename[]; | 87 extern const base::FilePath::CharType kTopSitesFilename[]; |
88 extern const base::FilePath::CharType kWebAppDirname[]; | 88 extern const base::FilePath::CharType kWebAppDirname[]; |
89 | 89 |
90 // File name of the Pepper Flash plugin on different platforms. | 90 // File name of the Pepper Flash plugin on different platforms. |
91 extern const base::FilePath::CharType kPepperFlashPluginFilename[]; | 91 extern const base::FilePath::CharType kPepperFlashPluginFilename[]; |
92 | 92 |
93 // directory names | 93 // directory names |
94 extern const wchar_t kUserDataDirname[]; | 94 extern const wchar_t kUserDataDirname[]; |
95 | 95 |
96 #if defined(OS_CHROMEOS) | |
97 extern const base::FilePath::CharType kDriveCacheDirname[]; | |
98 extern const char kOemDeviceRequisitionKey[]; | |
99 extern const char kOemIsEnterpriseManagedKey[]; | |
100 extern const char kOemCanExitEnterpriseEnrollmentKey[]; | |
101 extern const char kOemKeyboardDrivenOobeKey[]; | |
102 #endif // defined(OS_CHROMEOS) | |
103 | |
104 extern const bool kRecordModeEnabled; | 96 extern const bool kRecordModeEnabled; |
105 | 97 |
106 // The language code used when the language of a page could not be detected. | 98 // The language code used when the language of a page could not be detected. |
107 // (Matches what the CLD -Compact Language Detection- library reports.) | 99 // (Matches what the CLD -Compact Language Detection- library reports.) |
108 extern const char* const kUnknownLanguageCode; | 100 extern const char* const kUnknownLanguageCode; |
109 | 101 |
110 // If another javascript message box is displayed within | 102 // If another javascript message box is displayed within |
111 // kJavascriptMessageExpectedDelay of a previous javascript message box being | 103 // kJavascriptMessageExpectedDelay of a previous javascript message box being |
112 // dismissed, display an option to suppress future message boxes from this | 104 // dismissed, display an option to suppress future message boxes from this |
113 // contents. | 105 // contents. |
(...skipping 26 matching lines...) Expand all Loading... |
140 // Used by Metro Chrome to get information about the current tab. | 132 // Used by Metro Chrome to get information about the current tab. |
141 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; | 133 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; |
142 // Used by Metro Chrome to store activation state. | 134 // Used by Metro Chrome to store activation state. |
143 extern const wchar_t kMetroRegistryPath[]; | 135 extern const wchar_t kMetroRegistryPath[]; |
144 extern const wchar_t kLaunchModeValue[]; | 136 extern const wchar_t kLaunchModeValue[]; |
145 #endif | 137 #endif |
146 | 138 |
147 } // namespace chrome | 139 } // namespace chrome |
148 | 140 |
149 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 141 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
OLD | NEW |