| 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 #include "components/version_ui/version_ui_constants.h" | 5 #include "components/version_ui/version_ui_constants.h" |
| 6 | 6 |
| 7 namespace version_ui { | 7 namespace version_ui { |
| 8 | 8 |
| 9 // Resource paths. | 9 // Resource paths. |
| 10 const char kAboutVersionCSS[] = "about_version.css"; | 10 const char kAboutVersionCSS[] = "about_version.css"; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 const char kCompiler[] = "compiler"; | 29 const char kCompiler[] = "compiler"; |
| 30 #endif | 30 #endif |
| 31 const char kCopyright[] = "copyright"; | 31 const char kCopyright[] = "copyright"; |
| 32 #if defined(OS_CHROMEOS) | 32 #if defined(OS_CHROMEOS) |
| 33 const char kCustomizationId[] = "customization_id"; | 33 const char kCustomizationId[] = "customization_id"; |
| 34 #endif | 34 #endif |
| 35 #if !defined(OS_IOS) | 35 #if !defined(OS_IOS) |
| 36 const char kExecutablePath[] = "executable_path"; | 36 const char kExecutablePath[] = "executable_path"; |
| 37 const char kExecutablePathName[] = "executable_path_name"; | 37 const char kExecutablePathName[] = "executable_path_name"; |
| 38 #endif | 38 #endif |
| 39 #if defined(OS_CHROMEOS) |
| 40 const char kFirmwareVersion[] = "firmware_version"; |
| 41 #endif |
| 39 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 42 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 40 const char kFlashPlugin[] = "flash_plugin"; | 43 const char kFlashPlugin[] = "flash_plugin"; |
| 41 const char kFlashVersion[] = "flash_version"; | 44 const char kFlashVersion[] = "flash_version"; |
| 42 #endif | 45 #endif |
| 43 #if !defined(OS_IOS) | 46 #if !defined(OS_IOS) |
| 44 const char kJSEngine[] = "js_engine"; | 47 const char kJSEngine[] = "js_engine"; |
| 45 const char kJSVersion[] = "js_version"; | 48 const char kJSVersion[] = "js_version"; |
| 46 #endif | 49 #endif |
| 47 const char kOfficial[] = "official"; | 50 const char kOfficial[] = "official"; |
| 48 #if !defined(OS_CHROMEOS) | 51 #if !defined(OS_CHROMEOS) |
| (...skipping 13 matching lines...) Expand all Loading... |
| 62 const char kRevision[] = "revision"; | 65 const char kRevision[] = "revision"; |
| 63 const char kTitle[] = "title"; | 66 const char kTitle[] = "title"; |
| 64 const char kUserAgent[] = "useragent"; | 67 const char kUserAgent[] = "useragent"; |
| 65 const char kUserAgentName[] = "user_agent_name"; | 68 const char kUserAgentName[] = "user_agent_name"; |
| 66 const char kVariationsName[] = "variations_name"; | 69 const char kVariationsName[] = "variations_name"; |
| 67 const char kVersion[] = "version"; | 70 const char kVersion[] = "version"; |
| 68 const char kVersionBitSize[] = "version_bitsize"; | 71 const char kVersionBitSize[] = "version_bitsize"; |
| 69 const char kVersionModifier[] = "version_modifier"; | 72 const char kVersionModifier[] = "version_modifier"; |
| 70 | 73 |
| 71 } // namespace version_ui | 74 } // namespace version_ui |
| OLD | NEW |