Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef NET_URL_REQUEST_HTTP_PROTOCOL_HANDLER_H_ | |
| 6 #define NET_URL_REQUEST_HTTP_PROTOCOL_HANDLER_H_ | |
| 7 | |
|
mmenke
2012/07/18 16:21:53
#include <string>
shalev
2012/07/23 21:00:21
Done.
| |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/compiler_specific.h" | |
| 10 #include "net/url_request/url_request_job_factory.h" | |
| 11 | |
| 12 namespace net { | |
| 13 | |
| 14 class CookieStore; | |
| 15 class FraudulentCertificateReporter; | |
| 16 class HttpTransactionFactory; | |
| 17 class NetworkDelegate; | |
| 18 class SSLConfigService; | |
| 19 class TransportSecurityState; | |
| 20 class URLRequestJob; | |
| 21 class URLRequestThrottlerManager; | |
| 22 | |
| 23 // Implements a ProtocolHandler for HTTP. | |
| 24 class NET_EXPORT HttpProtocolHandler : | |
| 25 public URLRequestJobFactory::ProtocolHandler { | |
| 26 public: | |
| 27 HttpProtocolHandler( | |
| 28 HttpTransactionFactory* http_transaction_factory, | |
| 29 NetworkDelegate* network_delegate, | |
| 30 URLRequestThrottlerManager* throttler_manager, | |
| 31 const std::string& accept_language, | |
| 32 const std::string& accept_charset, | |
| 33 CookieStore* cookie_store, | |
| 34 FraudulentCertificateReporter* fraudulent_certificate_reporter, | |
| 35 SSLConfigService* ssl_config_service, | |
| 36 TransportSecurityState* transport_security_state); | |
| 37 | |
| 38 virtual URLRequestJob* MaybeCreateJob(URLRequest* request) const OVERRIDE; | |
| 39 | |
| 40 private: | |
| 41 HttpTransactionFactory* http_transaction_factory_; | |
| 42 NetworkDelegate* network_delegate_; | |
| 43 URLRequestThrottlerManager* throttler_manager_; | |
| 44 std::string accept_language_; | |
| 45 std::string accept_charset_; | |
|
mmenke
2012/07/18 16:21:53
nit: Might as well make both these strings const.
shalev
2012/07/23 21:00:21
Done.
| |
| 46 CookieStore* cookie_store_; | |
| 47 FraudulentCertificateReporter* fraudulent_certificate_reporter_; | |
| 48 SSLConfigService* ssl_config_service_; | |
| 49 TransportSecurityState* transport_security_state_; | |
| 50 | |
| 51 DISALLOW_COPY_AND_ASSIGN(HttpProtocolHandler); | |
| 52 }; | |
| 53 | |
| 54 } // namespace net | |
| 55 | |
| 56 #endif // NET_URL_REQUEST_HTTP_PROTOCOL_HANDLER_H_ | |
| OLD | NEW |