summaryrefslogtreecommitdiffstats
path: root/net/http/http_auth_handler_negotiate.h
diff options
context:
space:
mode:
authorwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-01 23:57:54 +0000
committerwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-01 23:57:54 +0000
commit73c4532bd7f5b84bc822a4acca5c5b8affef4129 (patch)
treedc2a525aab1bda568b52ea78e72c8be79b9165dc /net/http/http_auth_handler_negotiate.h
parent3209e71131849f3e0d513cd3fd8dca881f05d531 (diff)
downloadchromium_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_negotiate.h')
-rw-r--r--net/http/http_auth_handler_negotiate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/http/http_auth_handler_negotiate.h b/net/http/http_auth_handler_negotiate.h
index 2ff4a9b..5f46ab1 100644
--- a/net/http/http_auth_handler_negotiate.h
+++ b/net/http/http_auth_handler_negotiate.h
@@ -85,7 +85,7 @@ class HttpAuthHandlerNegotiate : public HttpAuthHandler {
private:
bool disable_cname_lookup_;
bool use_port_;
- scoped_refptr<HostResolver> resolver_;
+ HostResolver* resolver_;
#if defined(OS_WIN)
ULONG max_token_length_;
bool first_creation_;
@@ -148,7 +148,7 @@ class HttpAuthHandlerNegotiate : public HttpAuthHandler {
bool disable_cname_lookup_;
bool use_port_;
CompletionCallbackImpl<HttpAuthHandlerNegotiate> io_callback_;
- scoped_refptr<HostResolver> resolver_;
+ HostResolver* const resolver_;
// Members which are needed for DNS lookup + SPN.
AddressList address_list_;