| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef COMPONENTS_VERSION_UI_VERSION_UI_CONSTANTS_H_ | 5 #ifndef COMPONENTS_VERSION_UI_VERSION_UI_CONSTANTS_H_ |
| 6 #define COMPONENTS_VERSION_UI_VERSION_UI_CONSTANTS_H_ | 6 #define COMPONENTS_VERSION_UI_VERSION_UI_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include "build/build_config.h" |
| 9 |
| 8 namespace version_ui { | 10 namespace version_ui { |
| 9 | 11 |
| 10 // Resource paths. | 12 // Resource paths. |
| 11 // Must match the resource file names. | 13 // Must match the resource file names. |
| 12 extern const char kAboutVersionCSS[]; | 14 extern const char kAboutVersionCSS[]; |
| 13 extern const char kVersionJS[]; | 15 extern const char kVersionJS[]; |
| 14 | 16 |
| 15 // Message handlers. | 17 // Message handlers. |
| 16 // Must match the constants used in the resource files. | 18 // Must match the constants used in the resource files. |
| 17 extern const char kRequestVersionInfo[]; | 19 extern const char kRequestVersionInfo[]; |
| 18 extern const char kReturnFilePaths[]; | 20 extern const char kReturnFilePaths[]; |
| 19 extern const char kReturnFlashVersion[]; | 21 extern const char kReturnFlashVersion[]; |
| 20 extern const char kReturnVariationInfo[]; | 22 extern const char kReturnVariationInfo[]; |
| 21 | 23 |
| 22 // Strings. | 24 // Strings. |
| 23 // Must match the constants used in the resource files. | 25 // Must match the constants used in the resource files. |
| 24 extern const char kApplicationLabel[]; | 26 extern const char kApplicationLabel[]; |
| 27 #if defined(OS_CHROMEOS) |
| 25 extern const char kARC[]; | 28 extern const char kARC[]; |
| 26 extern const char kBlinkVersion[]; | 29 #endif |
| 27 extern const char kCL[]; | 30 extern const char kCL[]; |
| 28 extern const char kCommandLine[]; | 31 extern const char kCommandLine[]; |
| 29 extern const char kCommandLineName[]; | 32 extern const char kCommandLineName[]; |
| 30 extern const char kCompany[]; | 33 extern const char kCompany[]; |
| 34 #if defined(OS_WIN) |
| 35 extern const char kCompiler[]; |
| 36 #endif |
| 31 extern const char kCopyright[]; | 37 extern const char kCopyright[]; |
| 32 #if defined(OS_CHROMEOS) | 38 #if defined(OS_CHROMEOS) |
| 33 extern const char kCustomizationId[]; | 39 extern const char kCustomizationId[]; |
| 34 #endif | 40 #endif |
| 41 #if !defined(OS_IOS) |
| 35 extern const char kExecutablePath[]; | 42 extern const char kExecutablePath[]; |
| 36 extern const char kExecutablePathName[]; | 43 extern const char kExecutablePathName[]; |
| 44 #endif |
| 45 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 37 extern const char kFlashPlugin[]; | 46 extern const char kFlashPlugin[]; |
| 38 extern const char kFlashVersion[]; | 47 extern const char kFlashVersion[]; |
| 48 #endif |
| 49 #if !defined(OS_IOS) |
| 39 extern const char kJSEngine[]; | 50 extern const char kJSEngine[]; |
| 40 extern const char kJSVersion[]; | 51 extern const char kJSVersion[]; |
| 52 #endif |
| 41 extern const char kOfficial[]; | 53 extern const char kOfficial[]; |
| 54 #if !defined(OS_CHROMEOS) |
| 42 extern const char kOSName[]; | 55 extern const char kOSName[]; |
| 43 extern const char kOSType[]; | 56 extern const char kOSType[]; |
| 57 #endif |
| 58 #if defined(OS_ANDROID) |
| 44 extern const char kOSVersion[]; | 59 extern const char kOSVersion[]; |
| 60 #endif |
| 61 #if defined(OS_CHROMEOS) |
| 45 extern const char kPlatform[]; | 62 extern const char kPlatform[]; |
| 63 #endif |
| 64 #if !defined(OS_IOS) |
| 46 extern const char kProfilePath[]; | 65 extern const char kProfilePath[]; |
| 47 extern const char kProfilePathName[]; | 66 extern const char kProfilePathName[]; |
| 67 #endif |
| 48 extern const char kRevision[]; | 68 extern const char kRevision[]; |
| 49 extern const char kTitle[]; | 69 extern const char kTitle[]; |
| 50 extern const char kUserAgent[]; | 70 extern const char kUserAgent[]; |
| 51 extern const char kUserAgentName[]; | 71 extern const char kUserAgentName[]; |
| 52 extern const char kVariationsName[]; | 72 extern const char kVariationsName[]; |
| 53 extern const char kVersion[]; | 73 extern const char kVersion[]; |
| 54 extern const char kVersionBitSize[]; | 74 extern const char kVersionBitSize[]; |
| 55 extern const char kVersionModifier[]; | 75 extern const char kVersionModifier[]; |
| 56 | 76 |
| 57 } // namespace version_ui | 77 } // namespace version_ui |
| 58 | 78 |
| 59 #endif // COMPONENTS_VERSION_UI_VERSION_UI_CONSTANTS_H_ | 79 #endif // COMPONENTS_VERSION_UI_VERSION_UI_CONSTANTS_H_ |
| OLD | NEW |