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

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

Issue 7149013: Remove most of the remaining test dependencies (other than chrome/test). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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 | « chrome/browser/net/url_request_mock_util.cc ('k') | chrome/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: chrome/browser/net/url_request_slow_download_job.h
===================================================================
--- chrome/browser/net/url_request_slow_download_job.h (revision 88946)
+++ chrome/browser/net/url_request_slow_download_job.h (working copy)
@@ -1,64 +0,0 @@
-// Copyright (c) 2010 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 used in a UI test to test the
-// download manager. Requests to |kUnknownSizeUrl| and |kKnownSizeUrl| start
-// downloads that pause after the first
-
-#ifndef CHROME_BROWSER_NET_URL_REQUEST_SLOW_DOWNLOAD_JOB_H_
-#define CHROME_BROWSER_NET_URL_REQUEST_SLOW_DOWNLOAD_JOB_H_
-#pragma once
-
-#include <string>
-#include <vector>
-
-#include "base/task.h"
-#include "net/url_request/url_request_job.h"
-
-class URLRequestSlowDownloadJob : public net::URLRequestJob {
- public:
- explicit URLRequestSlowDownloadJob(net::URLRequest* request);
-
- // Timer callback, used to check to see if we should finish our download and
- // send the second chunk.
- void CheckDoneStatus();
-
- // net::URLRequestJob methods
- virtual void Start();
- virtual bool GetMimeType(std::string* mime_type) const;
- virtual void GetResponseInfo(net::HttpResponseInfo* info);
- virtual bool ReadRawData(net::IOBuffer* buf, int buf_size, int *bytes_read);
-
- static net::URLRequestJob* Factory(net::URLRequest* request,
- const std::string& scheme);
-
- // Test URLs.
- static const char kUnknownSizeUrl[];
- static const char kKnownSizeUrl[];
- static const char kFinishDownloadUrl[];
-
- // Adds the testing URLs to the net::URLRequestFilter.
- static void AddUrlHandler();
-
- private:
- virtual ~URLRequestSlowDownloadJob();
-
- void GetResponseInfoConst(net::HttpResponseInfo* info) const;
-
- // Mark all pending requests to be finished. We keep track of pending
- // requests in |kPendingRequests|.
- static void FinishPendingRequests();
- static std::vector<URLRequestSlowDownloadJob*> kPendingRequests;
-
- void StartAsync();
-
- void set_should_finish_download() { should_finish_download_ = true; }
-
- int first_download_size_remaining_;
- bool should_finish_download_;
- bool should_send_second_chunk_;
-
- ScopedRunnableMethodFactory<URLRequestSlowDownloadJob> method_factory_;
-};
-
-#endif // CHROME_BROWSER_NET_URL_REQUEST_SLOW_DOWNLOAD_JOB_H_
« no previous file with comments | « chrome/browser/net/url_request_mock_util.cc ('k') | chrome/browser/net/url_request_slow_download_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698