OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef COMPONENTS_VERSION_UI_VERSION_UI_CONSTANTS_H_ |
| 6 #define COMPONENTS_VERSION_UI_VERSION_UI_CONSTANTS_H_ |
| 7 |
| 8 namespace version_ui { |
| 9 |
| 10 // Resource paths. |
| 11 // Must match the resource file names. |
| 12 extern const char kAboutVersionCSS[]; |
| 13 extern const char kVersionJS[]; |
| 14 |
| 15 // Message handlers. |
| 16 // Must match the constants used in the resource files. |
| 17 extern const char kRequestVersionInfo[]; |
| 18 extern const char kReturnFilePaths[]; |
| 19 extern const char kReturnFlashVersion[]; |
| 20 extern const char kReturnVariationInfo[]; |
| 21 |
| 22 // Strings. |
| 23 // Must match the constants used in the resource files. |
| 24 extern const char kApplicationLabel[]; |
| 25 extern const char kBlinkVersion[]; |
| 26 extern const char kBuildID[]; |
| 27 extern const char kBuildIDName[]; |
| 28 extern const char kCL[]; |
| 29 extern const char kCommandLine[]; |
| 30 extern const char kCommandLineName[]; |
| 31 extern const char kCompany[]; |
| 32 extern const char kCopyright[]; |
| 33 extern const char kExecutablePath[]; |
| 34 extern const char kExecutablePathName[]; |
| 35 extern const char kFlashPlugin[]; |
| 36 extern const char kFlashVersion[]; |
| 37 extern const char kJSEngine[]; |
| 38 extern const char kJSVersion[]; |
| 39 extern const char kOfficial[]; |
| 40 extern const char kOSName[]; |
| 41 extern const char kOSType[]; |
| 42 extern const char kOSVersion[]; |
| 43 extern const char kPlatform[]; |
| 44 extern const char kProfilePath[]; |
| 45 extern const char kProfilePathName[]; |
| 46 extern const char kRevision[]; |
| 47 extern const char kTitle[]; |
| 48 extern const char kUserAgent[]; |
| 49 extern const char kUserAgentName[]; |
| 50 extern const char kVariationsName[]; |
| 51 extern const char kVersion[]; |
| 52 extern const char kVersionBitSize[]; |
| 53 extern const char kVersionModifier[]; |
| 54 |
| 55 } // namespace version_ui |
| 56 |
| 57 #endif // COMPONENTS_VERSION_UI_VERSION_UI_CONSTANTS_H_ |
OLD | NEW |