| Index: chrome/browser/ui/views/find_bar_view.cc
|
| diff --git a/chrome/browser/ui/views/find_bar_view.cc b/chrome/browser/ui/views/find_bar_view.cc
|
| index 7e76a4c17354f0bd9bed5208ee3c56fbce4442d1..380fa332ba0ce813f64caa7be59a19483d595f30 100644
|
| --- a/chrome/browser/ui/views/find_bar_view.cc
|
| +++ b/chrome/browser/ui/views/find_bar_view.cc
|
| @@ -6,9 +6,9 @@
|
|
|
| #include <algorithm>
|
|
|
| +#include "base/i18n/number_formatting.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ptr_util.h"
|
| -#include "base/strings/string_number_conversions.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| @@ -236,9 +236,9 @@ void FindBarView::UpdateForResult(const FindNotificationDetails& result,
|
| return;
|
| }
|
|
|
| - match_count_text_->SetText(l10n_util::GetStringFUTF16(IDS_FIND_IN_PAGE_COUNT,
|
| - base::IntToString16(result.active_match_ordinal()),
|
| - base::IntToString16(result.number_of_matches())));
|
| + match_count_text_->SetText(l10n_util::GetStringFUTF16(
|
| + IDS_FIND_IN_PAGE_COUNT, base::FormatNumber(result.active_match_ordinal()),
|
| + base::FormatNumber(result.number_of_matches())));
|
|
|
| UpdateMatchCountAppearance(result.number_of_matches() == 0 &&
|
| result.final_update());
|
|
|