diff options
author | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-08 22:57:29 +0000 |
---|---|---|
committer | mmenke@chromium.org <mmenke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-08 22:57:29 +0000 |
commit | 333bdf6026b851956d493b551440e22f1bae7d71 (patch) | |
tree | d79abcf1cc249fa7a260d85e8b97d06bd77c1f2a /net/http | |
parent | 32219e2fe871a07a9936e41bd236eb869289ffe0 (diff) | |
download | chromium_src-333bdf6026b851956d493b551440e22f1bae7d71.zip chromium_src-333bdf6026b851956d493b551440e22f1bae7d71.tar.gz chromium_src-333bdf6026b851956d493b551440e22f1bae7d71.tar.bz2 |
CapturingNetLog - remove maximum entries constructor argument.
Also replace with a NULL NetLog in a couple callsites where it
wasn't being used.
R=eroman@chromium.org
BUG=none
Review URL: https://chromiumcodereview.appspot.com/10546071
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141315 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/http_auth_handler_unittest.cc | 4 | ||||
-rw-r--r-- | net/http/http_cache_unittest.cc | 6 | ||||
-rw-r--r-- | net/http/http_network_transaction_spdy2_unittest.cc | 38 | ||||
-rw-r--r-- | net/http/http_network_transaction_spdy3_unittest.cc | 52 |
4 files changed, 50 insertions, 50 deletions
diff --git a/net/http/http_auth_handler_unittest.cc b/net/http/http_auth_handler_unittest.cc index ee07437..f079bab 100644 --- a/net/http/http_auth_handler_unittest.cc +++ b/net/http/http_auth_handler_unittest.cc @@ -36,7 +36,7 @@ TEST(HttpAuthHandlerTest, NetLog) { HttpAuth::ChallengeTokenizer tokenizer( challenge.begin(), challenge.end()); HttpAuthHandlerMock mock_handler; - CapturingNetLog capturing_net_log(CapturingNetLog::kUnbounded); + CapturingNetLog capturing_net_log; BoundNetLog bound_net_log(BoundNetLog::Make(&capturing_net_log, net::NetLog::SOURCE_NONE)); @@ -48,7 +48,7 @@ TEST(HttpAuthHandlerTest, NetLog) { if (async) test_callback.WaitForResult(); - net::CapturingNetLog::CapturedEntryList entries; + CapturingNetLog::CapturedEntryList entries; capturing_net_log.GetEntries(&entries); EXPECT_EQ(2u, entries.size()); diff --git a/net/http/http_cache_unittest.cc b/net/http/http_cache_unittest.cc index cd47a1a..9026599 100644 --- a/net/http/http_cache_unittest.cc +++ b/net/http/http_cache_unittest.cc @@ -427,7 +427,7 @@ TEST(HttpCache, SimpleGETNoDiskCache) { cache.disk_cache()->set_fail_requests(); - net::CapturingBoundNetLog log(net::CapturingNetLog::kUnbounded); + net::CapturingBoundNetLog log; log.SetLogLevel(net::NetLog::LOG_BASIC); // Read from the network, and don't use the cache. @@ -569,7 +569,7 @@ TEST(HttpCache, SimpleGETWithDiskFailures3) { TEST(HttpCache, SimpleGET_LoadOnlyFromCache_Hit) { MockHttpCache cache; - net::CapturingBoundNetLog log(net::CapturingNetLog::kUnbounded); + net::CapturingBoundNetLog log; // This prevents a number of write events from being logged. log.SetLogLevel(net::NetLog::LOG_BASIC); @@ -702,7 +702,7 @@ TEST(HttpCache, SimpleGET_LoadBypassCache) { MockTransaction transaction(kSimpleGET_Transaction); transaction.load_flags |= net::LOAD_BYPASS_CACHE; - net::CapturingBoundNetLog log(net::CapturingNetLog::kUnbounded); + net::CapturingBoundNetLog log; // This prevents a number of write events from being logged. log.SetLogLevel(net::NetLog::LOG_BASIC); diff --git a/net/http/http_network_transaction_spdy2_unittest.cc b/net/http/http_network_transaction_spdy2_unittest.cc index ddd5367..f11aebd 100644 --- a/net/http/http_network_transaction_spdy2_unittest.cc +++ b/net/http/http_network_transaction_spdy2_unittest.cc @@ -235,7 +235,7 @@ class HttpNetworkTransactionSpdy2Test : public PlatformTest { TestCompletionCallback callback; - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; EXPECT_TRUE(log.bound().IsLoggingAllEvents()); int rv = trans->Start(&request, callback.callback(), log.bound()); EXPECT_EQ(ERR_IO_PENDING, rv); @@ -1741,7 +1741,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, BasicAuthProxyNoKeepAlive) { // Configure against proxy server "myproxy:70". SessionDependencies session_deps(ProxyService::CreateFixed("myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -1847,7 +1847,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, BasicAuthProxyKeepAlive) { // Configure against proxy server "myproxy:70". SessionDependencies session_deps(ProxyService::CreateFixed("myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2050,7 +2050,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, request.url = GURL("https://www.google.com/"); SessionDependencies session_deps(ProxyService::CreateFixed("myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2109,7 +2109,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, HttpsProxyGet) { // Configure against https proxy server "proxy:70". SessionDependencies session_deps(ProxyService::CreateFixed( "https://proxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2165,7 +2165,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, HttpsProxySpdyGet) { // Configure against https proxy server "proxy:70". SessionDependencies session_deps(ProxyService::CreateFixed( "https://proxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2223,7 +2223,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, HttpsProxySpdyGetWithProxyAuth) { // Configure against https proxy server "myproxy:70". SessionDependencies session_deps( ProxyService::CreateFixed("https://myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2323,7 +2323,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, HttpsProxySpdyConnectHttps) { // Configure against https proxy server "proxy:70". SessionDependencies session_deps(ProxyService::CreateFixed( "https://proxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2404,7 +2404,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, HttpsProxySpdyConnectSpdy) { // Configure against https proxy server "proxy:70". SessionDependencies session_deps(ProxyService::CreateFixed( "https://proxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2483,7 +2483,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, HttpsProxySpdyConnectFailure) { // Configure against https proxy server "proxy:70". SessionDependencies session_deps(ProxyService::CreateFixed( "https://proxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2542,7 +2542,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, HttpsProxyAuthRetry) { // Configure against https proxy server "myproxy:70". SessionDependencies session_deps( ProxyService::CreateFixed("https://myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -4918,7 +4918,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, BasicAuthSpdyProxy) { // Configure against https proxy server "myproxy:70". SessionDependencies session_deps( ProxyService::CreateFixed("https://myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -5066,7 +5066,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, CrossOriginProxyPush) { // Configure against https proxy server "myproxy:70". SessionDependencies session_deps( ProxyService::CreateFixed("https://myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); // Enable cross-origin push. @@ -5164,7 +5164,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, CrossOriginProxyPushCorrectness) { // Configure against https proxy server "myproxy:70". SessionDependencies session_deps( ProxyService::CreateFixed("https://myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); // Enable cross-origin push. @@ -8793,7 +8793,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, SimpleCancel) { TestCompletionCallback callback; - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; int rv = trans->Start(&request, callback.callback(), log.bound()); EXPECT_EQ(ERR_IO_PENDING, rv); trans.reset(); // Cancel the transaction here. @@ -8804,7 +8804,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, SimpleCancel) { // Test a basic GET request through a proxy. TEST_F(HttpNetworkTransactionSpdy2Test, ProxyGet) { SessionDependencies session_deps(ProxyService::CreateFixed("myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -8852,7 +8852,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, ProxyGet) { // Test a basic HTTPS GET request through a proxy. TEST_F(HttpNetworkTransactionSpdy2Test, ProxyTunnelGet) { SessionDependencies session_deps(ProxyService::CreateFixed("myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -8919,7 +8919,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, ProxyTunnelGet) { // while establishing the tunnel. TEST_F(HttpNetworkTransactionSpdy2Test, ProxyTunnelGetHangup) { SessionDependencies session_deps(ProxyService::CreateFixed("myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -9307,7 +9307,7 @@ TEST_F(HttpNetworkTransactionSpdy2Test, TEST_F(HttpNetworkTransactionSpdy2Test, ClientAuthCertCache_Proxy_Fail) { SessionDependencies session_deps( ProxyService::CreateFixed("https://proxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<SSLCertRequestInfo> cert_request(new SSLCertRequestInfo()); diff --git a/net/http/http_network_transaction_spdy3_unittest.cc b/net/http/http_network_transaction_spdy3_unittest.cc index 4465a1c..4b67b28 100644 --- a/net/http/http_network_transaction_spdy3_unittest.cc +++ b/net/http/http_network_transaction_spdy3_unittest.cc @@ -235,7 +235,7 @@ class HttpNetworkTransactionSpdy3Test : public PlatformTest { TestCompletionCallback callback; - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; EXPECT_TRUE(log.bound().IsLoggingAllEvents()); int rv = trans->Start(&request, callback.callback(), log.bound()); EXPECT_EQ(ERR_IO_PENDING, rv); @@ -259,7 +259,7 @@ class HttpNetworkTransactionSpdy3Test : public PlatformTest { rv = ReadTransaction(trans.get(), &out.response_data); EXPECT_EQ(OK, rv); - net::CapturingNetLog::CapturedEntryList entries; + CapturingNetLog::CapturedEntryList entries; log.GetEntries(&entries); size_t pos = ExpectLogContainsSomewhere( entries, 0, NetLog::TYPE_HTTP_TRANSACTION_SEND_REQUEST_HEADERS, @@ -1741,7 +1741,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, BasicAuthProxyNoKeepAlive) { // Configure against proxy server "myproxy:70". SessionDependencies session_deps(ProxyService::CreateFixed("myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -1794,7 +1794,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, BasicAuthProxyNoKeepAlive) { rv = callback1.WaitForResult(); EXPECT_EQ(OK, rv); - net::CapturingNetLog::CapturedEntryList entries; + CapturingNetLog::CapturedEntryList entries; log.GetEntries(&entries); size_t pos = ExpectLogContainsSomewhere( entries, 0, NetLog::TYPE_HTTP_TRANSACTION_SEND_TUNNEL_HEADERS, @@ -1847,7 +1847,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, BasicAuthProxyKeepAlive) { // Configure against proxy server "myproxy:70". SessionDependencies session_deps(ProxyService::CreateFixed("myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -1895,7 +1895,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, BasicAuthProxyKeepAlive) { rv = callback1.WaitForResult(); EXPECT_EQ(OK, rv); - net::CapturingNetLog::CapturedEntryList entries; + CapturingNetLog::CapturedEntryList entries; log.GetEntries(&entries); size_t pos = ExpectLogContainsSomewhere( entries, 0, NetLog::TYPE_HTTP_TRANSACTION_SEND_TUNNEL_HEADERS, @@ -2050,7 +2050,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, request.url = GURL("https://www.google.com/"); SessionDependencies session_deps(ProxyService::CreateFixed("myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2089,7 +2089,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, rv = callback1.WaitForResult(); EXPECT_EQ(ERR_UNEXPECTED_PROXY_AUTH, rv); - net::CapturingNetLog::CapturedEntryList entries; + CapturingNetLog::CapturedEntryList entries; log.GetEntries(&entries); size_t pos = ExpectLogContainsSomewhere( entries, 0, NetLog::TYPE_HTTP_TRANSACTION_SEND_TUNNEL_HEADERS, @@ -2109,7 +2109,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, HttpsProxyGet) { // Configure against https proxy server "proxy:70". SessionDependencies session_deps(ProxyService::CreateFixed( "https://proxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2165,7 +2165,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, HttpsProxySpdyGet) { // Configure against https proxy server "proxy:70". SessionDependencies session_deps(ProxyService::CreateFixed( "https://proxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2223,7 +2223,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, HttpsProxySpdyGetWithProxyAuth) { // Configure against https proxy server "myproxy:70". SessionDependencies session_deps( ProxyService::CreateFixed("https://myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2323,7 +2323,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, HttpsProxySpdyConnectHttps) { // Configure against https proxy server "proxy:70". SessionDependencies session_deps(ProxyService::CreateFixed( "https://proxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2404,7 +2404,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, HttpsProxySpdyConnectSpdy) { // Configure against https proxy server "proxy:70". SessionDependencies session_deps(ProxyService::CreateFixed( "https://proxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2483,7 +2483,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, HttpsProxySpdyConnectFailure) { // Configure against https proxy server "proxy:70". SessionDependencies session_deps(ProxyService::CreateFixed( "https://proxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -2542,7 +2542,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, HttpsProxyAuthRetry) { // Configure against https proxy server "myproxy:70". SessionDependencies session_deps( ProxyService::CreateFixed("https://myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -4918,7 +4918,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, BasicAuthSpdyProxy) { // Configure against https proxy server "myproxy:70". SessionDependencies session_deps( ProxyService::CreateFixed("https://myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -5004,7 +5004,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, BasicAuthSpdyProxy) { rv = callback1.WaitForResult(); EXPECT_EQ(OK, rv); - net::CapturingNetLog::CapturedEntryList entries; + CapturingNetLog::CapturedEntryList entries; log.GetEntries(&entries); size_t pos = ExpectLogContainsSomewhere( entries, 0, NetLog::TYPE_HTTP_TRANSACTION_SEND_TUNNEL_HEADERS, @@ -5066,7 +5066,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, CrossOriginProxyPush) { // Configure against https proxy server "myproxy:70". SessionDependencies session_deps( ProxyService::CreateFixed("https://myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); // Enable cross-origin push. @@ -5164,7 +5164,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, CrossOriginProxyPushCorrectness) { // Configure against https proxy server "myproxy:70". SessionDependencies session_deps( ProxyService::CreateFixed("https://myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); // Enable cross-origin push. @@ -8792,7 +8792,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, SimpleCancel) { TestCompletionCallback callback; - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; int rv = trans->Start(&request, callback.callback(), log.bound()); EXPECT_EQ(ERR_IO_PENDING, rv); trans.reset(); // Cancel the transaction here. @@ -8803,7 +8803,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, SimpleCancel) { // Test a basic GET request through a proxy. TEST_F(HttpNetworkTransactionSpdy3Test, ProxyGet) { SessionDependencies session_deps(ProxyService::CreateFixed("myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -8851,7 +8851,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, ProxyGet) { // Test a basic HTTPS GET request through a proxy. TEST_F(HttpNetworkTransactionSpdy3Test, ProxyTunnelGet) { SessionDependencies session_deps(ProxyService::CreateFixed("myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -8894,7 +8894,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, ProxyTunnelGet) { rv = callback1.WaitForResult(); EXPECT_EQ(OK, rv); - net::CapturingNetLog::CapturedEntryList entries; + CapturingNetLog::CapturedEntryList entries; log.GetEntries(&entries); size_t pos = ExpectLogContainsSomewhere( entries, 0, NetLog::TYPE_HTTP_TRANSACTION_SEND_TUNNEL_HEADERS, @@ -8918,7 +8918,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, ProxyTunnelGet) { // while establishing the tunnel. TEST_F(HttpNetworkTransactionSpdy3Test, ProxyTunnelGetHangup) { SessionDependencies session_deps(ProxyService::CreateFixed("myproxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<HttpNetworkSession> session(CreateSession(&session_deps)); @@ -8958,7 +8958,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, ProxyTunnelGetHangup) { rv = callback1.WaitForResult(); EXPECT_EQ(ERR_EMPTY_RESPONSE, rv); - net::CapturingNetLog::CapturedEntryList entries; + CapturingNetLog::CapturedEntryList entries; log.GetEntries(&entries); size_t pos = ExpectLogContainsSomewhere( entries, 0, NetLog::TYPE_HTTP_TRANSACTION_SEND_TUNNEL_HEADERS, @@ -9305,7 +9305,7 @@ TEST_F(HttpNetworkTransactionSpdy3Test, ClientAuthCertCache_Direct_FalseStart) { TEST_F(HttpNetworkTransactionSpdy3Test, ClientAuthCertCache_Proxy_Fail) { SessionDependencies session_deps( ProxyService::CreateFixed("https://proxy:70")); - CapturingBoundNetLog log(CapturingNetLog::kUnbounded); + CapturingBoundNetLog log; session_deps.net_log = log.bound().net_log(); scoped_refptr<SSLCertRequestInfo> cert_request(new SSLCertRequestInfo()); |