OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/url_request/protocol_intercept_job_factory.h" | 5 #include "net/url_request/protocol_intercept_job_factory.h" |
6 | 6 |
7 #include "base/stl_util.h" | 7 #include "base/logging.h" |
8 #include "googleurl/src/gurl.h" | |
9 #include "net/base/load_flags.h" | |
10 #include "net/url_request/url_request_job_manager.h" | |
11 | |
12 class GURL; | |
13 | 8 |
14 namespace net { | 9 namespace net { |
15 | 10 |
16 ProtocolInterceptJobFactory::ProtocolInterceptJobFactory( | 11 ProtocolInterceptJobFactory::ProtocolInterceptJobFactory( |
17 scoped_ptr<URLRequestJobFactory> job_factory, | 12 scoped_ptr<URLRequestJobFactory> job_factory, |
18 scoped_ptr<ProtocolHandler> protocol_handler) | 13 scoped_ptr<ProtocolHandler> protocol_handler) |
19 : job_factory_(job_factory.Pass()), | 14 : job_factory_(job_factory.Pass()), |
20 protocol_handler_(protocol_handler.Pass()) { | 15 protocol_handler_(protocol_handler.Pass()) { |
21 } | 16 } |
22 | 17 |
23 ProtocolInterceptJobFactory::~ProtocolInterceptJobFactory() {} | 18 ProtocolInterceptJobFactory::~ProtocolInterceptJobFactory() {} |
24 | 19 |
25 bool ProtocolInterceptJobFactory::SetProtocolHandler( | |
26 const std::string& scheme, ProtocolHandler* protocol_handler) { | |
27 return job_factory_->SetProtocolHandler(scheme, protocol_handler); | |
28 } | |
29 | |
30 void ProtocolInterceptJobFactory::AddInterceptor(Interceptor* interceptor) { | |
31 return job_factory_->AddInterceptor(interceptor); | |
32 } | |
33 | |
34 URLRequestJob* ProtocolInterceptJobFactory::MaybeCreateJobWithInterceptor( | |
35 URLRequest* request, NetworkDelegate* network_delegate) const { | |
36 return job_factory_->MaybeCreateJobWithInterceptor(request, network_delegate); | |
37 } | |
38 | |
39 URLRequestJob* ProtocolInterceptJobFactory::MaybeCreateJobWithProtocolHandler( | 20 URLRequestJob* ProtocolInterceptJobFactory::MaybeCreateJobWithProtocolHandler( |
40 const std::string& scheme, | 21 const std::string& scheme, |
41 URLRequest* request, | 22 URLRequest* request, |
42 NetworkDelegate* network_delegate) const { | 23 NetworkDelegate* network_delegate) const { |
43 DCHECK(CalledOnValidThread()); | 24 DCHECK(CalledOnValidThread()); |
44 URLRequestJob* job = protocol_handler_->MaybeCreateJob(request, | 25 URLRequestJob* job = protocol_handler_->MaybeCreateJob(request, |
45 network_delegate); | 26 network_delegate); |
46 if (job) | 27 if (job) |
47 return job; | 28 return job; |
48 return job_factory_->MaybeCreateJobWithProtocolHandler( | 29 return job_factory_->MaybeCreateJobWithProtocolHandler( |
49 scheme, request, network_delegate); | 30 scheme, request, network_delegate); |
50 } | 31 } |
51 | 32 |
52 URLRequestJob* ProtocolInterceptJobFactory::MaybeInterceptRedirect( | |
53 const GURL& location, | |
54 URLRequest* request, | |
55 NetworkDelegate* network_delegate) const { | |
56 return job_factory_->MaybeInterceptRedirect( | |
57 location, request, network_delegate); | |
58 } | |
59 | |
60 URLRequestJob* ProtocolInterceptJobFactory::MaybeInterceptResponse( | |
61 URLRequest* request, NetworkDelegate* network_delegate) const { | |
62 return job_factory_->MaybeInterceptResponse(request, network_delegate); | |
63 } | |
64 | |
65 bool ProtocolInterceptJobFactory::IsHandledProtocol( | 33 bool ProtocolInterceptJobFactory::IsHandledProtocol( |
66 const std::string& scheme) const { | 34 const std::string& scheme) const { |
67 return job_factory_->IsHandledProtocol(scheme); | 35 return job_factory_->IsHandledProtocol(scheme); |
68 } | 36 } |
69 | 37 |
70 bool ProtocolInterceptJobFactory::IsHandledURL(const GURL& url) const { | 38 bool ProtocolInterceptJobFactory::IsHandledURL(const GURL& url) const { |
71 return job_factory_->IsHandledURL(url); | 39 return job_factory_->IsHandledURL(url); |
72 } | 40 } |
73 | 41 |
74 } // namespace net | 42 } // namespace net |
OLD | NEW |