| Index: chrome/browser/ui/webui/settings/about_handler.cc
|
| diff --git a/chrome/browser/ui/webui/settings/about_handler.cc b/chrome/browser/ui/webui/settings/about_handler.cc
|
| index 1665cb4a0999ee6a86ab0796085ab59f437e9260..3b62a0f21af19f8b55909337f6a721f2cc02d55c 100644
|
| --- a/chrome/browser/ui/webui/settings/about_handler.cc
|
| +++ b/chrome/browser/ui/webui/settings/about_handler.cc
|
| @@ -278,11 +278,15 @@ AboutHandler* AboutHandler::Create(content::WebUIDataSource* html_source,
|
| base::ASCIIToUTF16(chrome::kChromeUICreditsURL));
|
| html_source->AddString("aboutProductLicense", license);
|
|
|
| - html_source->AddBoolean("aboutObsolteNowOrSoon",
|
| + html_source->AddBoolean("aboutObsoleteNowOrSoon",
|
| ObsoleteSystem::IsObsoleteNowOrSoon());
|
| - html_source->AddBoolean("aboutObsolteEndOfTheLine",
|
| + html_source->AddBoolean("aboutObsoleteEndOfTheLine",
|
| ObsoleteSystem::IsObsoleteNowOrSoon() &&
|
| ObsoleteSystem::IsEndOfTheLine());
|
| + html_source->AddString("aboutObsoleteSystem",
|
| + ObsoleteSystem::LocalizedObsoleteString());
|
| + html_source->AddString("aboutObsoleteSystemURL",
|
| + ObsoleteSystem::GetLinkURL());
|
|
|
| #if defined(GOOGLE_CHROME_BUILD)
|
| base::string16 tos = l10n_util::GetStringFUTF16(
|
|
|