| 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 |
| 96 extern const bool kRecordModeEnabled; | 104 extern const bool kRecordModeEnabled; |
| 97 | 105 |
| 98 // The language code used when the language of a page could not be detected. | 106 // The language code used when the language of a page could not be detected. |
| 99 // (Matches what the CLD -Compact Language Detection- library reports.) | 107 // (Matches what the CLD -Compact Language Detection- library reports.) |
| 100 extern const char* const kUnknownLanguageCode; | 108 extern const char* const kUnknownLanguageCode; |
| 101 | 109 |
| 102 // If another javascript message box is displayed within | 110 // If another javascript message box is displayed within |
| 103 // kJavascriptMessageExpectedDelay of a previous javascript message box being | 111 // kJavascriptMessageExpectedDelay of a previous javascript message box being |
| 104 // dismissed, display an option to suppress future message boxes from this | 112 // dismissed, display an option to suppress future message boxes from this |
| 105 // contents. | 113 // contents. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 132 // Used by Metro Chrome to get information about the current tab. | 140 // Used by Metro Chrome to get information about the current tab. |
| 133 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; | 141 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; |
| 134 // Used by Metro Chrome to store activation state. | 142 // Used by Metro Chrome to store activation state. |
| 135 extern const wchar_t kMetroRegistryPath[]; | 143 extern const wchar_t kMetroRegistryPath[]; |
| 136 extern const wchar_t kLaunchModeValue[]; | 144 extern const wchar_t kLaunchModeValue[]; |
| 137 #endif | 145 #endif |
| 138 | 146 |
| 139 } // namespace chrome | 147 } // namespace chrome |
| 140 | 148 |
| 141 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 149 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |