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

Side by Side Diff: content/browser/download/download_job.cc

Issue 2762943003: Add a new UMA enum to record how many download uses parallel requests (Closed)
Patch Set: rebase again Created 3 years, 9 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 unified diff | Download patch
« no previous file with comments | « content/browser/download/download_job.h ('k') | content/browser/download/download_stats.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/download/download_job.h" 5 #include "content/browser/download/download_job.h"
6 6
7 #include "base/bind_helpers.h" 7 #include "base/bind_helpers.h"
8 #include "content/browser/download/download_file.h" 8 #include "content/browser/download/download_file.h"
9 #include "content/browser/download/download_item_impl.h" 9 #include "content/browser/download/download_item_impl.h"
10 #include "content/public/browser/browser_thread.h" 10 #include "content/public/browser/browser_thread.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 // download_file_ is owned by download_item_ on the UI thread and is always 48 // download_file_ is owned by download_item_ on the UI thread and is always
49 // deleted on the FILE thread after download_file_ is nulled out. 49 // deleted on the FILE thread after download_file_ is nulled out.
50 // So it's safe to use base::Unretained here. 50 // So it's safe to use base::Unretained here.
51 BrowserThread::PostTask( 51 BrowserThread::PostTask(
52 BrowserThread::FILE, FROM_HERE, 52 BrowserThread::FILE, FROM_HERE,
53 base::Bind(&DownloadFile::AddByteStream, base::Unretained(download_file), 53 base::Bind(&DownloadFile::AddByteStream, base::Unretained(download_file),
54 base::Passed(&stream_reader), offset, length)); 54 base::Passed(&stream_reader), offset, length));
55 } 55 }
56 56
57 bool DownloadJob::UsesParallelRequests() const {
58 return false;
59 }
60
57 } // namespace content 61 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/download/download_job.h ('k') | content/browser/download/download_stats.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698