diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-01 23:57:54 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-01 23:57:54 +0000 |
commit | 73c4532bd7f5b84bc822a4acca5c5b8affef4129 (patch) | |
tree | dc2a525aab1bda568b52ea78e72c8be79b9165dc /net/http/http_auth_handler_factory.h | |
parent | 3209e71131849f3e0d513cd3fd8dca881f05d531 (diff) | |
download | chromium_src-73c4532bd7f5b84bc822a4acca5c5b8affef4129.zip chromium_src-73c4532bd7f5b84bc822a4acca5c5b8affef4129.tar.gz chromium_src-73c4532bd7f5b84bc822a4acca5c5b8affef4129.tar.bz2 |
Stop refcounting HostResolver.
BUG=46049
TEST=none
Review URL: http://codereview.chromium.org/3601002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61256 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_auth_handler_factory.h')
-rw-r--r-- | net/http/http_auth_handler_factory.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/http/http_auth_handler_factory.h b/net/http/http_auth_handler_factory.h index 06d0f83..da6bad8 100644 --- a/net/http/http_auth_handler_factory.h +++ b/net/http/http_auth_handler_factory.h @@ -107,9 +107,11 @@ class HttpAuthHandlerFactory { // responsible for deleting the factory. // The default factory supports Basic, Digest, NTLM, and Negotiate schemes. // - // |host_resolver| is used by the Negotiate authentication handler to perform + // |resolver| is used by the Negotiate authentication handler to perform // CNAME lookups to generate a Kerberos SPN for the server. It must be - // non-NULL. + // non-NULL. |resolver| must remain valid for the lifetime of the + // HttpAuthHandlerRegistryFactory and any HttpAuthHandlers created by said + // factory. static HttpAuthHandlerRegistryFactory* CreateDefault(HostResolver* resolver); private: |