| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 const char kJSEngine[] = "js_engine"; | 47 const char kJSEngine[] = "js_engine"; |
| 48 const char kJSVersion[] = "js_version"; | 48 const char kJSVersion[] = "js_version"; |
| 49 #endif | 49 #endif |
| 50 const char kOfficial[] = "official"; | 50 const char kOfficial[] = "official"; |
| 51 #if !defined(OS_CHROMEOS) | 51 #if !defined(OS_CHROMEOS) |
| 52 const char kOSName[] = "os_name"; | 52 const char kOSName[] = "os_name"; |
| 53 const char kOSType[] = "os_type"; | 53 const char kOSType[] = "os_type"; |
| 54 #endif | 54 #endif |
| 55 #if defined(OS_ANDROID) | 55 #if defined(OS_ANDROID) |
| 56 const char kOSVersion[] = "os_version"; | 56 const char kOSVersion[] = "os_version"; |
| 57 const char kGmsName[] = "gms_name"; |
| 58 const char kGmsVersion[] = "gms_version"; |
| 57 #endif | 59 #endif |
| 58 #if defined(OS_CHROMEOS) | 60 #if defined(OS_CHROMEOS) |
| 59 const char kPlatform[] = "platform"; | 61 const char kPlatform[] = "platform"; |
| 60 #endif | 62 #endif |
| 61 #if !defined(OS_IOS) | 63 #if !defined(OS_IOS) |
| 62 const char kProfilePath[] = "profile_path"; | 64 const char kProfilePath[] = "profile_path"; |
| 63 const char kProfilePathName[] = "profile_path_name"; | 65 const char kProfilePathName[] = "profile_path_name"; |
| 64 #endif | 66 #endif |
| 65 const char kRevision[] = "revision"; | 67 const char kRevision[] = "revision"; |
| 66 const char kTitle[] = "title"; | 68 const char kTitle[] = "title"; |
| 67 const char kUserAgent[] = "useragent"; | 69 const char kUserAgent[] = "useragent"; |
| 68 const char kUserAgentName[] = "user_agent_name"; | 70 const char kUserAgentName[] = "user_agent_name"; |
| 69 const char kVariationsName[] = "variations_name"; | 71 const char kVariationsName[] = "variations_name"; |
| 70 const char kVersion[] = "version"; | 72 const char kVersion[] = "version"; |
| 71 const char kVersionBitSize[] = "version_bitsize"; | 73 const char kVersionBitSize[] = "version_bitsize"; |
| 72 const char kVersionModifier[] = "version_modifier"; | 74 const char kVersionModifier[] = "version_modifier"; |
| 73 | 75 |
| 74 } // namespace version_ui | 76 } // namespace version_ui |
| OLD | NEW |