summaryrefslogtreecommitdiffstats
path: root/content/browser/download/base_file.cc
diff options
context:
space:
mode:
authorcbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-29 15:19:18 +0000
committercbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-29 15:19:18 +0000
commit30ae76441edc1625333188cd924a5a20d456fdbc (patch)
tree6eacf0775d3788b40f04db670b45fe9cea49b48c /content/browser/download/base_file.cc
parente20fbed2f4ab2a62d95dea67a119a2c1c8a14bf7 (diff)
downloadchromium_src-30ae76441edc1625333188cd924a5a20d456fdbc.zip
chromium_src-30ae76441edc1625333188cd924a5a20d456fdbc.tar.gz
chromium_src-30ae76441edc1625333188cd924a5a20d456fdbc.tar.bz2
downloads: Improve download rate estimation.
Previously, download rate was estimated as bytes_received/(current_time - download_start_time) Although simple, this would react slowly to dynamic changes in download time, or user initiated pauses. With this change, a ring buffer of the past 10 seconds of download time is used instead, and estimates are derived from that. It handles dynamic changes to bandwidth well. Pauses are handled reasonably well, as estimates are accurate after ten seconds - a better solution would be to clear the data rates when the user resumes from a pause. The main downside with this approach is it takes about 100 bytes of memory per active download, as well as adds some complexity. BUG=16390 TEST=content_unittests Review URL: https://chromiumcodereview.appspot.com/14697023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202874 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/download/base_file.cc')
-rw-r--r--content/browser/download/base_file.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/content/browser/download/base_file.cc b/content/browser/download/base_file.cc
index 687c321..e649eed 100644
--- a/content/browser/download/base_file.cc
+++ b/content/browser/download/base_file.cc
@@ -218,11 +218,6 @@ DownloadInterruptReason BaseFile::AnnotateWithSourceInformation() {
}
#endif
-int64 BaseFile::CurrentSpeed() const {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
- return CurrentSpeedAtTime(base::TimeTicks::Now());
-}
-
bool BaseFile::GetHash(std::string* hash) {
DCHECK(!detached_);
hash->assign(reinterpret_cast<const char*>(sha256_hash_),
@@ -339,12 +334,6 @@ void BaseFile::ClearStream() {
bound_net_log_.EndEvent(net::NetLog::TYPE_DOWNLOAD_FILE_OPENED);
}
-int64 BaseFile::CurrentSpeedAtTime(base::TimeTicks current_time) const {
- base::TimeDelta diff = current_time - start_tick_;
- int64 diff_ms = diff.InMilliseconds();
- return diff_ms == 0 ? 0 : bytes_so_far() * 1000 / diff_ms;
-}
-
DownloadInterruptReason BaseFile::LogNetError(
const char* operation,
net::Error error) {