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

Unified Diff: content/browser/download/parallel_download_utils.cc

Issue 2819483002: Parallel download browser test. (Closed)
Patch Set: Fix compiling. Created 3 years, 8 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
Index: content/browser/download/parallel_download_utils.cc
diff --git a/content/browser/download/parallel_download_utils.cc b/content/browser/download/parallel_download_utils.cc
index 40f4397a10533a3ff559bdcd1b1e4d69cf732a4a..c37472683e6ba172021a407312fcc925a43b6be9 100644
--- a/content/browser/download/parallel_download_utils.cc
+++ b/content/browser/download/parallel_download_utils.cc
@@ -14,30 +14,13 @@ namespace content {
namespace {
-// Finch parameter key value for minimum slice size in bytes to use parallel
-// download.
-const char kMinSliceSizeFinchKey[] = "min_slice_size";
-
// Default value for |kMinSliceSizeFinchKey|, when no parameter is specified.
const int64_t kMinSliceSizeParallelDownload = 2097152;
-// Finch parameter key value for number of parallel requests in a parallel
-// download, including the original request.
-const char kParallelRequestCountFinchKey[] = "request_count";
-
// Default value for |kParallelRequestCountFinchKey|, when no parameter is
// specified.
const int kParallelRequestCount = 2;
-// Finch parameter key value for the delay time in milliseconds to send
-// parallel requests after response of the original request is handled.
-const char kParallelRequestDelayFinchKey[] = "parallel_request_delay";
-
-// Finch parameter key value for the remaining time in seconds that is required
-// to send parallel requests.
-const char kParallelRequestRemainingTimeFinchKey[] =
- "parallel_request_remaining_time";
-
// The default remaining download time in seconds required for parallel request
// creation.
const int kDefaultRemainingTimeInSeconds = 10;
« no previous file with comments | « content/browser/download/parallel_download_utils.h ('k') | content/public/test/test_download_request_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698