Index: chrome/browser/chromeos/update_observer.cc |
=================================================================== |
--- chrome/browser/chromeos/update_observer.cc (revision 54340) |
+++ chrome/browser/chromeos/update_observer.cc (working copy) |
@@ -5,7 +5,6 @@ |
#include "chrome/browser/chromeos/update_observer.h" |
#include "app/l10n_util.h" |
-#include "base/string_util.h" |
#include "base/utf_string_conversions.h" |
#include "chrome/common/time_format.h" |
#include "grit/generated_resources.h" |
@@ -41,7 +40,7 @@ |
if (progress != progress_) { |
progress_ = progress; |
notification_.Show(l10n_util::GetStringFUTF16(IDS_UPDATE_DOWNLOADING, |
- IntToString16(progress_)), false); |
+ base::IntToString16(progress_)), false); |
} |
} |
break; |