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

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

Issue 4882001: Return a speed of 0 if a download is paused from DownloadItem, instead of checking when rendering. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/download
Patch Set: Code review fix Created 10 years, 1 month 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/download/download_item.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/download/download_util.cc
diff --git a/chrome/browser/download/download_util.cc b/chrome/browser/download/download_util.cc
index a0d774a34bd0529aa704db187997981d0a6f0026..55a1a731f41a9aeee10214f62606484e00140999 100644
--- a/chrome/browser/download/download_util.cc
+++ b/chrome/browser/download/download_util.cc
@@ -565,16 +565,10 @@ std::wstring GetProgressStatusText(DownloadItem* download) {
} else {
amount.assign(received_size);
}
- std::wstring speed_text;
- if (download->is_paused()) {
- // If the download is paused, set the rate to 0B/s.
- amount_units = GetByteDisplayUnits(0);
- speed_text = UTF16ToWideHack(FormatSpeed(0, amount_units, true));
- } else {
- amount_units = GetByteDisplayUnits(download->CurrentSpeed());
- speed_text = UTF16ToWideHack(FormatSpeed(download->CurrentSpeed(),
- amount_units, true));
- }
+ int64 current_speed = download->CurrentSpeed();
+ amount_units = GetByteDisplayUnits(current_speed);
+ std::wstring speed_text = UTF16ToWideHack(FormatSpeed(current_speed,
+ amount_units, true));
std::wstring speed_text_localized;
if (base::i18n::AdjustStringForLocaleDirection(speed_text,
&speed_text_localized))
@@ -754,4 +748,3 @@ bool IsDangerous(DownloadCreateInfo* info, Profile* profile) {
}
} // namespace download_util
-
« no previous file with comments | « chrome/browser/download/download_item.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698