// Copyright 2012 The Chromium Authors // 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 net and http headers from disk. #ifndef NET_TEST_URL_REQUEST_URL_REQUEST_MOCK_HTTP_JOB_H_ #define NET_TEST_URL_REQUEST_URL_REQUEST_MOCK_HTTP_JOB_H_ #include <stdint.h> #include <memory> #include <string> #include "net/test/url_request/url_request_test_job_backed_by_file.h" #include "url/gurl.h" namespace base { class FilePath; } namespace net { class URLRequestInterceptor; } namespace net { class URLRequestMockHTTPJob : public URLRequestTestJobBackedByFile { … }; } // namespace net #endif // NET_TEST_URL_REQUEST_URL_REQUEST_MOCK_HTTP_JOB_H_