| Index: chrome/browser/ui/webui/options/content_settings_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/content_settings_handler.cc b/chrome/browser/ui/webui/options/content_settings_handler.cc
|
| index 6b8ed61c2bcb354abed702d9aa9dbd8b7b8b562f..139e9148a270549e646fe08afd6b92c6a1d0967c 100644
|
| --- a/chrome/browser/ui/webui/options/content_settings_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/content_settings_handler.cc
|
| @@ -13,11 +13,11 @@
|
| #include "base/bind.h"
|
| #include "base/bind_helpers.h"
|
| #include "base/command_line.h"
|
| +#include "base/i18n/number_formatting.h"
|
| #include "base/logging.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ptr_util.h"
|
| #include "base/stl_util.h"
|
| -#include "base/strings/string_number_conversions.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "base/values.h"
|
| #include "build/build_config.h"
|
| @@ -1189,10 +1189,7 @@ void ContentSettingsHandler::UpdateZoomLevelsExceptionsView() {
|
| // number.
|
| int zoom_percent = static_cast<int>(
|
| content::ZoomLevelToZoomFactor(i->zoom_level) * 100 + 0.5);
|
| - exception->SetString(
|
| - kZoom,
|
| - l10n_util::GetStringFUTF16(IDS_ZOOM_PERCENT,
|
| - base::IntToString16(zoom_percent)));
|
| + exception->SetString(kZoom, base::FormatPercent(zoom_percent));
|
| exception->SetString(
|
| site_settings::kSource, site_settings::kPreferencesSource);
|
| // Append the new entry to the list and map.
|
|
|