Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1828)

Unified Diff: chrome/browser/download/download_item_model.cc

Issue 267001: Separate out some more ICU from base and into base/i18n.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/browser_about_handler.cc ('k') | chrome/browser/download/save_package.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/download/download_item_model.cc
===================================================================
--- chrome/browser/download/download_item_model.cc (revision 28217)
+++ chrome/browser/download/download_item_model.cc (working copy)
@@ -1,10 +1,11 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/download/download_item_model.h"
#include "app/l10n_util.h"
+#include "base/i18n/number_formatting.h"
#include "base/string_util.h"
#include "chrome/browser/download/download_manager.h"
#include "chrome/browser/download/save_package.h"
@@ -110,9 +111,10 @@
std::wstring status_text;
switch (download_->state()) {
case DownloadItem::IN_PROGRESS:
- status_text = l10n_util::GetStringF(IDS_SAVE_PAGE_PROGRESS,
- FormatNumber(size),
- FormatNumber(total_size));
+ status_text = l10n_util::GetStringF(
+ IDS_SAVE_PAGE_PROGRESS,
+ UTF16ToWide(base::FormatNumber(size)),
+ UTF16ToWide(base::FormatNumber(total_size)));
break;
case DownloadItem::COMPLETE:
status_text = l10n_util::GetString(IDS_SAVE_PAGE_STATUS_COMPLETED);
« no previous file with comments | « chrome/browser/browser_about_handler.cc ('k') | chrome/browser/download/save_package.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698