OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_HTTP_HTTP_AUTH_HANDLER_FACTORY_H_ | 5 #ifndef NET_HTTP_HTTP_AUTH_HANDLER_FACTORY_H_ |
6 #define NET_HTTP_HTTP_AUTH_HANDLER_FACTORY_H_ | 6 #define NET_HTTP_HTTP_AUTH_HANDLER_FACTORY_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 const std::string& challenge, | 99 const std::string& challenge, |
100 HttpAuth::Target target, | 100 HttpAuth::Target target, |
101 const GURL& origin, | 101 const GURL& origin, |
102 int digest_nonce_count, | 102 int digest_nonce_count, |
103 const BoundNetLog& net_log, | 103 const BoundNetLog& net_log, |
104 scoped_ptr<HttpAuthHandler>* handler); | 104 scoped_ptr<HttpAuthHandler>* handler); |
105 | 105 |
106 // Creates a standard HttpAuthHandlerRegistryFactory. The caller is | 106 // Creates a standard HttpAuthHandlerRegistryFactory. The caller is |
107 // responsible for deleting the factory. | 107 // responsible for deleting the factory. |
108 // The default factory supports Basic, Digest, NTLM, and Negotiate schemes. | 108 // The default factory supports Basic, Digest, NTLM, and Negotiate schemes. |
109 static HttpAuthHandlerRegistryFactory* CreateDefault(); | 109 // |
| 110 // |host_resolver| is used by the Negotiate authentication handler to perform |
| 111 // CNAME lookups to generate a Kerberos SPN for the server. It must be |
| 112 // non-NULL. |
| 113 static HttpAuthHandlerRegistryFactory* CreateDefault(HostResolver* resolver); |
110 | 114 |
111 private: | 115 private: |
112 // The URL security manager | 116 // The URL security manager |
113 URLSecurityManager* url_security_manager_; | 117 URLSecurityManager* url_security_manager_; |
114 | 118 |
115 DISALLOW_COPY_AND_ASSIGN(HttpAuthHandlerFactory); | 119 DISALLOW_COPY_AND_ASSIGN(HttpAuthHandlerFactory); |
116 }; | 120 }; |
117 | 121 |
118 // The HttpAuthHandlerRegistryFactory dispatches create requests out | 122 // The HttpAuthHandlerRegistryFactory dispatches create requests out |
119 // to other factories based on the auth scheme. | 123 // to other factories based on the auth scheme. |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 private: | 184 private: |
181 typedef std::map<std::string, HttpAuthHandlerFactory*> FactoryMap; | 185 typedef std::map<std::string, HttpAuthHandlerFactory*> FactoryMap; |
182 | 186 |
183 FactoryMap factory_map_; | 187 FactoryMap factory_map_; |
184 DISALLOW_COPY_AND_ASSIGN(HttpAuthHandlerRegistryFactory); | 188 DISALLOW_COPY_AND_ASSIGN(HttpAuthHandlerRegistryFactory); |
185 }; | 189 }; |
186 | 190 |
187 } // namespace net | 191 } // namespace net |
188 | 192 |
189 #endif // NET_HTTP_HTTP_AUTH_HANDLER_FACTORY_H_ | 193 #endif // NET_HTTP_HTTP_AUTH_HANDLER_FACTORY_H_ |
OLD | NEW |