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

Unified Diff: content/browser/net/url_request_slow_download_job.h

Issue 7983037: Revert 102126 - Make cancel remove cancelled download from active queues at time of cancel. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 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
« no previous file with comments | « content/browser/download/save_package.cc ('k') | content/browser/net/url_request_slow_download_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/net/url_request_slow_download_job.h
===================================================================
--- content/browser/net/url_request_slow_download_job.h (revision 102135)
+++ content/browser/net/url_request_slow_download_job.h (working copy)
@@ -1,13 +1,9 @@
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// This class simulates a slow download. This is used in browser tests
-// to test the download manager. Requests to |kUnknownSizeUrl| and
-// |kKnownSizeUrl| start downloads that pause after the first chunk of
-// data is delivered. A later request to |kFinishDownloadUrl| will finish
-// these downloads. A later request to |kErrorFinishDownloadUrl| will
-// cause these downloads to error with |net::ERR_FAILED|.
-// TODO(rdsmith): Update to allow control of returned error.
+// This class simulates a slow download. This used in a UI test to test the
+// download manager. Requests to |kUnknownSizeUrl| and |kKnownSizeUrl| start
+// downloads that pause after the first
#ifndef CONTENT_BROWSER_NET_URL_REQUEST_SLOW_DOWNLOAD_JOB_H_
#define CONTENT_BROWSER_NET_URL_REQUEST_SLOW_DOWNLOAD_JOB_H_
@@ -41,7 +37,6 @@
static const char kUnknownSizeUrl[];
static const char kKnownSizeUrl[];
static const char kFinishDownloadUrl[];
- static const char kErrorFinishDownloadUrl[];
// Adds the testing URLs to the net::URLRequestFilter.
CONTENT_EXPORT static void AddUrlHandler();
@@ -52,19 +47,17 @@
void GetResponseInfoConst(net::HttpResponseInfo* info) const;
// Mark all pending requests to be finished. We keep track of pending
- // requests in |pending_requests_|.
- static void FinishPendingRequests(bool error);
- static std::vector<URLRequestSlowDownloadJob*> pending_requests_;
+ // requests in |kPendingRequests|.
+ static void FinishPendingRequests();
+ static std::vector<URLRequestSlowDownloadJob*> kPendingRequests;
void StartAsync();
void set_should_finish_download() { should_finish_download_ = true; }
- void set_should_error_download() { should_error_download_ = true; }
int first_download_size_remaining_;
bool should_finish_download_;
bool should_send_second_chunk_;
- bool should_error_download_;
ScopedRunnableMethodFactory<URLRequestSlowDownloadJob> method_factory_;
};
« no previous file with comments | « content/browser/download/save_package.cc ('k') | content/browser/net/url_request_slow_download_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698