| Index: chrome/browser/ui/webui/settings/md_settings_localized_strings_provider.cc
|
| diff --git a/chrome/browser/ui/webui/settings/md_settings_localized_strings_provider.cc b/chrome/browser/ui/webui/settings/md_settings_localized_strings_provider.cc
|
| index 074aba8be7f5d22948f101f7bb83c1f58d7a18f4..e184acb4035bbf504734c2e49c3199023ebac3ad 100644
|
| --- a/chrome/browser/ui/webui/settings/md_settings_localized_strings_provider.cc
|
| +++ b/chrome/browser/ui/webui/settings/md_settings_localized_strings_provider.cc
|
| @@ -32,7 +32,6 @@
|
| #include "content/public/browser/web_ui_data_source.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
|
|
| -
|
| #if defined(OS_CHROMEOS)
|
| #include "ash/common/system/chromeos/devicetype_utils.h"
|
| #include "chrome/browser/chromeos/profiles/profile_helper.h"
|
| @@ -653,6 +652,15 @@ void AddDeviceStrings(content::WebUIDataSource* html_source) {
|
| AddLocalizedStringsBulk(html_source, storage_strings,
|
| arraysize(storage_strings));
|
|
|
| + LocalizedString power_strings[] = {
|
| + {"powerSourceLabel", IDS_SETTINGS_POWER_SOURCE_LABEL},
|
| + {"powerSourceBattery", IDS_SETTINGS_POWER_SOURCE_BATTERY},
|
| + {"powerSourceAcAdapter", IDS_SETTINGS_POWER_SOURCE_AC_ADAPTER},
|
| + {"powerSourceLowPowerCharger",
|
| + IDS_SETTINGS_POWER_SOURCE_LOW_POWER_CHARGER},
|
| + {"calculatingPower", IDS_SETTINGS_POWER_SOURCE_CALCULATING}};
|
| + AddLocalizedStringsBulk(html_source, power_strings, arraysize(power_strings));
|
| +
|
| html_source->AddString("naturalScrollLearnMoreLink",
|
| base::ASCIIToUTF16(chrome::kNaturalScrollHelpURL));
|
| }
|
|
|