Chromium Code Reviews| Index: chrome/browser/ui/views/critical_notification_bubble_view.cc |
| diff --git a/chrome/browser/ui/views/critical_notification_bubble_view.cc b/chrome/browser/ui/views/critical_notification_bubble_view.cc |
| index ded52e7bc5d936e5251b4921819a180f8901aa7b..98e77edd49af2417e10dc0b48f3398891d40120b 100644 |
| --- a/chrome/browser/ui/views/critical_notification_bubble_view.cc |
| +++ b/chrome/browser/ui/views/critical_notification_bubble_view.cc |
| @@ -4,7 +4,7 @@ |
| #include "chrome/browser/ui/views/critical_notification_bubble_view.h" |
| -#include "base/strings/string_number_conversions.h" |
| +#include "base/i18n/number_formatting.h" |
| #include "base/strings/utf_string_conversions.h" |
| #include "chrome/browser/browser_process.h" |
| #include "chrome/browser/lifetime/application_lifetime.h" |
| @@ -86,7 +86,7 @@ base::string16 CriticalNotificationBubbleView::GetWindowTitle() const { |
| return seconds > 0 ? l10n_util::GetStringFUTF16( |
| IDS_CRITICAL_NOTIFICATION_HEADLINE, |
| l10n_util::GetStringUTF16(IDS_PRODUCT_NAME), |
| - base::IntToString16(seconds)) |
| + base::FormatNumber(seconds)) |
|
jungshik at Google
2016/05/20 23:58:03
This one is also caught in my search for <ex>[0-9]
Greg Levin
2016/05/26 14:03:14
Done.
|
| : l10n_util::GetStringFUTF16( |
| IDS_CRITICAL_NOTIFICATION_HEADLINE_ALTERNATE, |
| l10n_util::GetStringUTF16(IDS_PRODUCT_NAME)); |