| 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 |
| 17 #if defined(OS_IOS) |
| 15 // Message handlers. | 18 // Message handlers. |
| 16 // Must match the constants used in the resource files. | 19 // Must match the constants used in the resource files. |
| 17 extern const char kRequestVersionInfo[]; | 20 extern const char kRequestVersionInfo[]; |
| 18 extern const char kReturnFilePaths[]; | |
| 19 extern const char kReturnFlashVersion[]; | |
| 20 extern const char kReturnVariationInfo[]; | 21 extern const char kReturnVariationInfo[]; |
| 22 #endif |
| 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[]; |
| 25 extern const char kARC[]; | 27 extern const char kARC[]; |
| 26 extern const char kBlinkVersion[]; | 28 extern const char kBlinkVersion[]; |
| 27 extern const char kCL[]; | 29 extern const char kCL[]; |
| 28 extern const char kCommandLine[]; | 30 extern const char kCommandLine[]; |
| 29 extern const char kCommandLineName[]; | 31 extern const char kCommandLineName[]; |
| 30 extern const char kCompany[]; | 32 extern const char kCompany[]; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 47 extern const char kUserAgent[]; | 49 extern const char kUserAgent[]; |
| 48 extern const char kUserAgentName[]; | 50 extern const char kUserAgentName[]; |
| 49 extern const char kVariationsName[]; | 51 extern const char kVariationsName[]; |
| 50 extern const char kVersion[]; | 52 extern const char kVersion[]; |
| 51 extern const char kVersionBitSize[]; | 53 extern const char kVersionBitSize[]; |
| 52 extern const char kVersionModifier[]; | 54 extern const char kVersionModifier[]; |
| 53 | 55 |
| 54 } // namespace version_ui | 56 } // namespace version_ui |
| 55 | 57 |
| 56 #endif // COMPONENTS_VERSION_UI_VERSION_UI_CONSTANTS_H_ | 58 #endif // COMPONENTS_VERSION_UI_VERSION_UI_CONSTANTS_H_ |
| OLD | NEW |