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

Unified Diff: chrome/browser/download/download_item.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 | « no previous file | chrome/browser/download/download_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/download/download_item.cc
diff --git a/chrome/browser/download/download_item.cc b/chrome/browser/download/download_item.cc
index 3069e94802702bdf2b16a38f803414cac164c9e7..378187728a85168883192bf11c5ee7d1d2ed712c 100644
--- a/chrome/browser/download/download_item.cc
+++ b/chrome/browser/download/download_item.cc
@@ -325,6 +325,8 @@ bool DownloadItem::TimeRemaining(base::TimeDelta* remaining) const {
}
int64 DownloadItem::CurrentSpeed() const {
+ if (is_paused_)
+ return 0;
base::TimeDelta diff = base::TimeTicks::Now() - start_tick_;
int64 diff_ms = diff.InMilliseconds();
return diff_ms == 0 ? 0 : received_bytes_ * 1000 / diff_ms;
« no previous file with comments | « no previous file | chrome/browser/download/download_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698