OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/ui/webui/help/help_handler.h" | 5 #include "chrome/browser/ui/webui/help/help_handler.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 l10n_util::GetStringUTF16(resources[i].ids)); | 145 l10n_util::GetStringUTF16(resources[i].ids)); |
146 } | 146 } |
147 | 147 |
148 localized_strings->SetString( | 148 localized_strings->SetString( |
149 "browserVersion", | 149 "browserVersion", |
150 l10n_util::GetStringFUTF16(IDS_ABOUT_PRODUCT_VERSION, | 150 l10n_util::GetStringFUTF16(IDS_ABOUT_PRODUCT_VERSION, |
151 BuildBrowserVersionString())); | 151 BuildBrowserVersionString())); |
152 | 152 |
153 string16 license = l10n_util::GetStringFUTF16( | 153 string16 license = l10n_util::GetStringFUTF16( |
154 IDS_ABOUT_VERSION_LICENSE, | 154 IDS_ABOUT_VERSION_LICENSE, |
| 155 #if !defined(OS_CHROMEOS) |
155 UTF8ToUTF16(google_util::StringAppendGoogleLocaleParam( | 156 UTF8ToUTF16(google_util::StringAppendGoogleLocaleParam( |
156 chrome::kChromiumProjectURL)), | 157 chrome::kChromiumProjectURL)), |
| 158 #endif |
157 ASCIIToUTF16(chrome::kChromeUICreditsURL)); | 159 ASCIIToUTF16(chrome::kChromeUICreditsURL)); |
158 localized_strings->SetString("productLicense", license); | 160 localized_strings->SetString("productLicense", license); |
159 | 161 |
160 #if defined(OS_CHROMEOS) | |
161 string16 os_license = l10n_util::GetStringFUTF16( | |
162 IDS_ABOUT_CROS_VERSION_LICENSE, | |
163 ASCIIToUTF16(chrome::kChromeUIOSCreditsURL)); | |
164 localized_strings->SetString("productOsLicense", os_license); | |
165 #endif | |
166 | |
167 string16 tos = l10n_util::GetStringFUTF16( | 162 string16 tos = l10n_util::GetStringFUTF16( |
168 IDS_ABOUT_TERMS_OF_SERVICE, UTF8ToUTF16(chrome::kChromeUITermsURL)); | 163 IDS_ABOUT_TERMS_OF_SERVICE, UTF8ToUTF16(chrome::kChromeUITermsURL)); |
169 localized_strings->SetString("productTOS", tos); | 164 localized_strings->SetString("productTOS", tos); |
170 | 165 |
171 localized_strings->SetString("webkitVersion", | 166 localized_strings->SetString("webkitVersion", |
172 webkit_glue::GetWebKitVersion()); | 167 webkit_glue::GetWebKitVersion()); |
173 | 168 |
174 localized_strings->SetString("jsEngine", "V8"); | 169 localized_strings->SetString("jsEngine", "V8"); |
175 localized_strings->SetString("jsEngineVersion", v8::V8::GetVersion()); | 170 localized_strings->SetString("jsEngineVersion", v8::V8::GetVersion()); |
176 | 171 |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 web_ui()->CallJavascriptFunction("help.HelpPage.setOSFirmware", | 345 web_ui()->CallJavascriptFunction("help.HelpPage.setOSFirmware", |
351 *firmware_string); | 346 *firmware_string); |
352 } | 347 } |
353 | 348 |
354 void HelpHandler::OnReleaseChannel(const std::string& channel) { | 349 void HelpHandler::OnReleaseChannel(const std::string& channel) { |
355 scoped_ptr<Value> channel_string(Value::CreateStringValue(channel)); | 350 scoped_ptr<Value> channel_string(Value::CreateStringValue(channel)); |
356 web_ui()->CallJavascriptFunction( | 351 web_ui()->CallJavascriptFunction( |
357 "help.HelpPage.updateSelectedChannel", *channel_string); | 352 "help.HelpPage.updateSelectedChannel", *channel_string); |
358 } | 353 } |
359 #endif // defined(OS_CHROMEOS) | 354 #endif // defined(OS_CHROMEOS) |
OLD | NEW |