1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef NET_URL_REQUEST_URL_REQUEST_INTERCEPTING_JOB_FACTORY_H_
6 #define NET_URL_REQUEST_URL_REQUEST_INTERCEPTING_JOB_FACTORY_H_
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "net/base/net_export.h"
14 #include "net/url_request/url_request_job_factory.h"
22 class URLRequestInterceptor
;
24 // This class acts as a wrapper for URLRequestJobFactory. The
25 // URLRequestInteceptor is given the option of creating a URLRequestJob for each
26 // URLRequest. If the interceptor does not create a job, the URLRequest is
27 // forwarded to the wrapped URLRequestJobFactory instead.
29 // This class is only intended for use in intercepting requests before they
30 // are passed on to their default ProtocolHandler. Each supported scheme should
31 // have its own ProtocolHandler.
32 class NET_EXPORT URLRequestInterceptingJobFactory
33 : public URLRequestJobFactory
{
35 URLRequestInterceptingJobFactory(
36 scoped_ptr
<URLRequestJobFactory
> job_factory
,
37 scoped_ptr
<URLRequestInterceptor
> interceptor
);
38 ~URLRequestInterceptingJobFactory() override
;
40 // URLRequestJobFactory implementation
41 URLRequestJob
* MaybeCreateJobWithProtocolHandler(
42 const std::string
& scheme
,
44 NetworkDelegate
* network_delegate
) const override
;
46 URLRequestJob
* MaybeInterceptRedirect(
48 NetworkDelegate
* network_delegate
,
49 const GURL
& location
) const override
;
51 URLRequestJob
* MaybeInterceptResponse(
53 NetworkDelegate
* network_delegate
) const override
;
55 bool IsHandledProtocol(const std::string
& scheme
) const override
;
56 bool IsHandledURL(const GURL
& url
) const override
;
57 bool IsSafeRedirectTarget(const GURL
& location
) const override
;
60 scoped_ptr
<URLRequestJobFactory
> job_factory_
;
61 scoped_ptr
<URLRequestInterceptor
> interceptor_
;
63 DISALLOW_COPY_AND_ASSIGN(URLRequestInterceptingJobFactory
);
68 #endif // NET_URL_REQUEST_URL_REQUEST_INTERCEPTING_JOB_FACTORY_H_