summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/update_observer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/chromeos/update_observer.cc')
-rw-r--r--chrome/browser/chromeos/update_observer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/update_observer.cc b/chrome/browser/chromeos/update_observer.cc
index b73fd0a..1765a8a 100644
--- a/chrome/browser/chromeos/update_observer.cc
+++ b/chrome/browser/chromeos/update_observer.cc
@@ -5,7 +5,7 @@
#include "chrome/browser/chromeos/update_observer.h"
#include "app/l10n_util.h"
-#include "base/string_util.h"
+#include "base/string_number_conversions.h"
#include "base/utf_string_conversions.h"
#include "chrome/common/time_format.h"
#include "grit/generated_resources.h"
@@ -41,7 +41,7 @@ void UpdateObserver::UpdateStatusChanged(UpdateLibrary* library) {
if (progress != progress_) {
progress_ = progress;
notification_.Show(l10n_util::GetStringFUTF16(IDS_UPDATE_DOWNLOADING,
- IntToString16(progress_)), false);
+ base::IntToString16(progress_)), false);
}
}
break;