OLD | NEW |
---|---|
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 ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_JOB_FACTORY_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_JOB_FACTORY_H_ |
6 #define ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_JOB_FACTORY_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_JOB_FACTORY_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "net/url_request/url_request_job_factory.h" | 9 #include "net/url_request/url_request_job_factory.h" |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... | |
26 virtual ~AwURLRequestJobFactory(); | 26 virtual ~AwURLRequestJobFactory(); |
27 | 27 |
28 bool SetProtocolHandler(const std::string& scheme, | 28 bool SetProtocolHandler(const std::string& scheme, |
29 ProtocolHandler* protocol_handler); | 29 ProtocolHandler* protocol_handler); |
30 | 30 |
31 // net::URLRequestJobFactory implementation. | 31 // net::URLRequestJobFactory implementation. |
32 virtual net::URLRequestJob* MaybeCreateJobWithProtocolHandler( | 32 virtual net::URLRequestJob* MaybeCreateJobWithProtocolHandler( |
33 const std::string& scheme, | 33 const std::string& scheme, |
34 net::URLRequest* request, | 34 net::URLRequest* request, |
35 net::NetworkDelegate* network_delegate) const override; | 35 net::NetworkDelegate* network_delegate) const override; |
36 | |
37 virtual net::URLRequestJob* MaybeInterceptRedirect( | |
michaeln
2014/11/06 21:07:46
per new c++ 11 guidelines, just annotate with 'ove
bengr
2014/11/06 23:58:01
Done.
| |
38 net::URLRequest* request, | |
39 net::NetworkDelegate* network_delegate, | |
40 const GURL& location) const override; | |
41 | |
42 virtual net::URLRequestJob* MaybeInterceptResponse( | |
43 net::URLRequest* request, | |
44 net::NetworkDelegate* network_delegate) const override; | |
45 | |
36 virtual bool IsHandledProtocol(const std::string& scheme) const override; | 46 virtual bool IsHandledProtocol(const std::string& scheme) const override; |
37 virtual bool IsHandledURL(const GURL& url) const override; | 47 virtual bool IsHandledURL(const GURL& url) const override; |
38 virtual bool IsSafeRedirectTarget(const GURL& location) const override; | 48 virtual bool IsSafeRedirectTarget(const GURL& location) const override; |
39 | 49 |
40 private: | 50 private: |
41 // By default calls are forwarded to this factory, to avoid having to | 51 // By default calls are forwarded to this factory, to avoid having to |
42 // subclass an existing implementation class. | 52 // subclass an existing implementation class. |
43 scoped_ptr<net::URLRequestJobFactoryImpl> next_factory_; | 53 scoped_ptr<net::URLRequestJobFactoryImpl> next_factory_; |
44 | 54 |
45 DISALLOW_COPY_AND_ASSIGN(AwURLRequestJobFactory); | 55 DISALLOW_COPY_AND_ASSIGN(AwURLRequestJobFactory); |
46 }; | 56 }; |
47 | 57 |
48 } // namespace android_webview | 58 } // namespace android_webview |
49 | 59 |
50 #endif // ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_JOB_FACTORY_H_ | 60 #endif // ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_JOB_FACTORY_H_ |
OLD | NEW |