blob: 2f34397424b00b07d9c14046761e0c40b642d053 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// Copyright (c) 2006-2008 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 URLRequestJob class that pulls the content and http headers from disk.
#ifndef CHROME_BROWSER_AUTOMATION_URL_REQUEST_MOCK_HTTP_JOB_H__
#define CHROME_BROWSER_AUTOMATION_URL_REQUEST_MOCK_HTTP_JOB_H__
#include "net/url_request/url_request_file_job.h"
class URLRequestMockHTTPJob : public URLRequestFileJob {
public:
URLRequestMockHTTPJob(URLRequest* request);
virtual ~URLRequestMockHTTPJob() { }
virtual bool GetMimeType(std::string* mime_type);
virtual bool GetCharset(std::string* charset);
virtual void GetResponseInfo(net::HttpResponseInfo* info);
static URLRequest::ProtocolFactory Factory;
// For UI tests: adds the testing URLs to the URLRequestFilter.
static void AddUITestUrls(const std::wstring& base_path);
// Given the path to a file relative to base_path_, construct a mock URL.
static GURL GetMockUrl(const std::wstring& path);
private:
// This is the file path leading to the root of the directory to use as the
// root of the http server.
static std::wstring base_path_;
};
# endif // CHROME_BROWSER_AUTOMATION_URL_REQUEST_MOCK_HTTP_JOB_H__
|