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

Side by Side Diff: net/url_request/protocol_intercept_job_factory.h

Issue 12217095: Remove unused pieces of URLRequestJobFactory API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef NET_URL_REQUEST_PROTOCOL_INTERCEPT_JOB_FACTORY_H_ 5 #ifndef NET_URL_REQUEST_PROTOCOL_INTERCEPT_JOB_FACTORY_H_
6 #define NET_URL_REQUEST_PROTOCOL_INTERCEPT_JOB_FACTORY_H_ 6 #define NET_URL_REQUEST_PROTOCOL_INTERCEPT_JOB_FACTORY_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 11 matching lines...) Expand all
22 // given the option of creating a URLRequestJob for each potential URLRequest. 22 // given the option of creating a URLRequestJob for each potential URLRequest.
23 // If |protocol_handler_| does not create a job (i.e. MaybeCreateJob() returns 23 // If |protocol_handler_| does not create a job (i.e. MaybeCreateJob() returns
24 // NULL) the URLRequest is forwarded to the |job_factory_| to be handled there. 24 // NULL) the URLRequest is forwarded to the |job_factory_| to be handled there.
25 class NET_EXPORT ProtocolInterceptJobFactory : public URLRequestJobFactory { 25 class NET_EXPORT ProtocolInterceptJobFactory : public URLRequestJobFactory {
26 public: 26 public:
27 ProtocolInterceptJobFactory(scoped_ptr<URLRequestJobFactory> job_factory, 27 ProtocolInterceptJobFactory(scoped_ptr<URLRequestJobFactory> job_factory,
28 scoped_ptr<ProtocolHandler> protocol_handler); 28 scoped_ptr<ProtocolHandler> protocol_handler);
29 virtual ~ProtocolInterceptJobFactory(); 29 virtual ~ProtocolInterceptJobFactory();
30 30
31 // URLRequestJobFactory implementation 31 // URLRequestJobFactory implementation
32 virtual bool SetProtocolHandler(const std::string& scheme,
33 ProtocolHandler* protocol_handler) OVERRIDE;
34 virtual void AddInterceptor(Interceptor* interceptor) OVERRIDE;
35 virtual URLRequestJob* MaybeCreateJobWithInterceptor(
36 URLRequest* request, NetworkDelegate* network_delegate) const OVERRIDE;
37 virtual URLRequestJob* MaybeCreateJobWithProtocolHandler( 32 virtual URLRequestJob* MaybeCreateJobWithProtocolHandler(
38 const std::string& scheme, 33 const std::string& scheme,
39 URLRequest* request, 34 URLRequest* request,
40 NetworkDelegate* network_delegate) const OVERRIDE; 35 NetworkDelegate* network_delegate) const OVERRIDE;
41 virtual URLRequestJob* MaybeInterceptRedirect(
42 const GURL& location,
43 URLRequest* request,
44 NetworkDelegate* network_delegate) const OVERRIDE;
45 virtual URLRequestJob* MaybeInterceptResponse(
46 URLRequest* request, NetworkDelegate* network_delegate) const OVERRIDE;
47 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE; 36 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE;
48 virtual bool IsHandledURL(const GURL& url) const OVERRIDE; 37 virtual bool IsHandledURL(const GURL& url) const OVERRIDE;
49 38
50 private: 39 private:
51 scoped_ptr<URLRequestJobFactory> job_factory_; 40 scoped_ptr<URLRequestJobFactory> job_factory_;
52 scoped_ptr<ProtocolHandler> protocol_handler_; 41 scoped_ptr<ProtocolHandler> protocol_handler_;
53 42
54 DISALLOW_COPY_AND_ASSIGN(ProtocolInterceptJobFactory); 43 DISALLOW_COPY_AND_ASSIGN(ProtocolInterceptJobFactory);
55 }; 44 };
56 45
57 } // namespace net 46 } // namespace net
58 47
59 #endif // NET_URL_REQUEST_PROTOCOL_INTERCEPT_JOB_FACTORY_H_ 48 #endif // NET_URL_REQUEST_PROTOCOL_INTERCEPT_JOB_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698