| Index: chrome/browser/ui/webui/options/core_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/core_options_handler.cc b/chrome/browser/ui/webui/options/core_options_handler.cc
|
| index f4c359b1ab5d1b89cbffe3a277d57915b17c0810..a281738ff70aabf956dbf14c7a8fbffe1a22f62a 100644
|
| --- a/chrome/browser/ui/webui/options/core_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/core_options_handler.cc
|
| @@ -18,6 +18,8 @@
|
| #include "chrome/browser/extensions/extension_util.h"
|
| #include "chrome/browser/metrics/metrics_reporting_state.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| +#include "chrome/browser/ui/webui/help/help_utils.h"
|
| +#include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/pref_names.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "components/url_fixer/url_fixer.h"
|
| @@ -167,6 +169,13 @@ void CoreOptionsHandler::GetStaticLocalizedValues(
|
| l10n_util::GetStringUTF16(IDS_DONE));
|
| localized_strings->SetString("deletableItemDeleteButtonTitle",
|
| l10n_util::GetStringUTF16(IDS_OPTIONS_DELETABLE_ITEM_DELETE_BUTTON));
|
| +
|
| + localized_strings->SetString(
|
| + "browserVersion",
|
| + l10n_util::GetStringFUTF16(IDS_ABOUT_PRODUCT_VERSION,
|
| + help_utils::BuildBrowserVersionString()));
|
| + localized_strings->SetBoolean("showVersion",
|
| + ::switches::AboutInSettingsEnabled());
|
| }
|
|
|
| void CoreOptionsHandler::Uninitialize() {
|
|
|