From ac5c06ec27c40539d4b8c3892def9400af2e3852 Mon Sep 17 00:00:00 2001 From: "cbentzel@chromium.org" Date: Thu, 27 May 2010 15:07:38 +0000 Subject: HttpAuthHandlers hold onto a bound net log. Although this doesn't have a behavioral impact in this CL, it is needed for additional logging which I'd like to add. BUG=34737 TEST=net_unittests Review URL: http://codereview.chromium.org/2288001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48391 0039d316-1c4b-4281-b951-d872f2087c98 --- net/http/http_network_transaction_unittest.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'net/http/http_network_transaction_unittest.cc') diff --git a/net/http/http_network_transaction_unittest.cc b/net/http/http_network_transaction_unittest.cc index b427814..79d176f 100644 --- a/net/http/http_network_transaction_unittest.cc +++ b/net/http/http_network_transaction_unittest.cc @@ -5428,8 +5428,7 @@ class MockAuthHandlerCanonical : public HttpAuthHandler { } virtual int ResolveCanonicalName(HostResolver* host_resolver, - CompletionCallback* callback, - const BoundNetLog& net_log) { + CompletionCallback* callback) { EXPECT_NE(RESOLVE_TESTED, resolve_); int rv = OK; switch (resolve_) { @@ -5503,6 +5502,7 @@ class MockAuthHandlerCanonical : public HttpAuthHandler { const GURL& origin, CreateReason reason, int nonce_count, + const BoundNetLog& net_log, scoped_refptr* handler) { *handler = mock_handler_; return OK; -- cgit v1.1