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

Unified Diff: chrome/browser/net/url_request_mock_http_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_failed_dns_job.cc ('k') | chrome/browser/net/url_request_mock_http_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_mock_http_job.h
===================================================================
--- chrome/browser/net/url_request_mock_http_job.h (revision 88946)
+++ chrome/browser/net/url_request_mock_http_job.h (working copy)
@@ -1,53 +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.
-//
-// A net::URLRequestJob class that pulls the content and http headers from disk.
-
-#ifndef CHROME_BROWSER_NET_URL_REQUEST_MOCK_HTTP_JOB_H_
-#define CHROME_BROWSER_NET_URL_REQUEST_MOCK_HTTP_JOB_H_
-#pragma once
-
-#include <string>
-
-#include "net/url_request/url_request_file_job.h"
-
-class FilePath;
-
-class URLRequestMockHTTPJob : public net::URLRequestFileJob {
- public:
- URLRequestMockHTTPJob(net::URLRequest* request, const FilePath& file_path);
-
- virtual bool GetMimeType(std::string* mime_type) const;
- virtual bool GetCharset(std::string* charset);
- virtual void GetResponseInfo(net::HttpResponseInfo* info);
- virtual bool IsRedirectResponse(GURL* location, int* http_status_code);
-
- static net::URLRequest::ProtocolFactory Factory;
-
- // Adds the testing URLs to the net::URLRequestFilter.
- static void AddUrlHandler(const FilePath& base_path);
-
- // Given the path to a file relative to base_path_, construct a mock URL.
- static GURL GetMockUrl(const FilePath& path);
-
- // Given the path to a file relative to base_path_,
- // construct a mock URL for view source.
- static GURL GetMockViewSourceUrl(const FilePath& path);
-
- protected:
- virtual ~URLRequestMockHTTPJob() { }
-
- static FilePath GetOnDiskPath(const FilePath& base_path,
- net::URLRequest* request,
- const std::string& scheme);
-
- private:
- void GetResponseInfoConst(net::HttpResponseInfo* info) const;
-
- // This is the file path leading to the root of the directory to use as the
- // root of the http server.
- static FilePath base_path_;
-};
-
-#endif // CHROME_BROWSER_NET_URL_REQUEST_MOCK_HTTP_JOB_H_
« no previous file with comments | « chrome/browser/net/url_request_failed_dns_job.cc ('k') | chrome/browser/net/url_request_mock_http_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698