Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(259)

Unified Diff: net/socket/ssl_client_socket_unittest.cc

Issue 10546071: CapturingNetLog - remove maximum entries constructor argument. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/socket/socks_client_socket_unittest.cc ('k') | net/socket/transport_client_socket_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_unittest.cc
===================================================================
--- net/socket/ssl_client_socket_unittest.cc (revision 141266)
+++ net/socket/ssl_client_socket_unittest.cc (working copy)
@@ -79,7 +79,7 @@
ASSERT_TRUE(test_server.GetAddressList(&addr));
net::TestCompletionCallback callback;
- net::CapturingNetLog log(net::CapturingNetLog::kUnbounded);
+ net::CapturingNetLog log;
net::StreamSocket* transport = new net::TCPClientSocket(
addr, &log, net::NetLog::Source());
int rv = transport->Connect(callback.callback());
@@ -122,7 +122,7 @@
ASSERT_TRUE(test_server.GetAddressList(&addr));
net::TestCompletionCallback callback;
- net::CapturingNetLog log(net::CapturingNetLog::kUnbounded);
+ net::CapturingNetLog log;
net::StreamSocket* transport = new net::TCPClientSocket(
addr, &log, net::NetLog::Source());
int rv = transport->Connect(callback.callback());
@@ -167,7 +167,7 @@
ASSERT_TRUE(test_server.GetAddressList(&addr));
net::TestCompletionCallback callback;
- net::CapturingNetLog log(net::CapturingNetLog::kUnbounded);
+ net::CapturingNetLog log;
net::StreamSocket* transport = new net::TCPClientSocket(
addr, &log, net::NetLog::Source());
int rv = transport->Connect(callback.callback());
@@ -212,7 +212,7 @@
ASSERT_TRUE(test_server.GetAddressList(&addr));
net::TestCompletionCallback callback;
- net::CapturingNetLog log(net::CapturingNetLog::kUnbounded);
+ net::CapturingNetLog log;
net::StreamSocket* transport = new net::TCPClientSocket(
addr, &log, net::NetLog::Source());
int rv = transport->Connect(callback.callback());
@@ -272,7 +272,7 @@
ASSERT_TRUE(test_server.GetAddressList(&addr));
net::TestCompletionCallback callback;
- net::CapturingNetLog log(net::CapturingNetLog::kUnbounded);
+ net::CapturingNetLog log;
net::StreamSocket* transport = new net::TCPClientSocket(
addr, &log, net::NetLog::Source());
int rv = transport->Connect(callback.callback());
@@ -549,7 +549,7 @@
ASSERT_TRUE(test_server.GetAddressList(&addr));
net::TestCompletionCallback callback;
- net::CapturingNetLog log(net::CapturingNetLog::kUnbounded);
+ net::CapturingNetLog log;
log.SetLogLevel(net::NetLog::LOG_ALL);
net::StreamSocket* transport = new net::TCPClientSocket(
addr, &log, net::NetLog::Source());
@@ -679,7 +679,7 @@
ASSERT_TRUE(test_server.GetAddressList(&addr));
net::TestCompletionCallback callback;
- net::CapturingNetLog log(net::CapturingNetLog::kUnbounded);
+ net::CapturingNetLog log;
net::StreamSocket* transport = new net::TCPClientSocket(
addr, &log, net::NetLog::Source());
int rv = transport->Connect(callback.callback());
@@ -880,7 +880,7 @@
ASSERT_TRUE(test_server.GetAddressList(&addr));
net::TestCompletionCallback callback;
- net::CapturingNetLog log(net::CapturingNetLog::kUnbounded);
+ net::CapturingNetLog log;
net::StreamSocket* transport = new net::TCPClientSocket(
addr, &log, net::NetLog::Source());
int rv = transport->Connect(callback.callback());
« no previous file with comments | « net/socket/socks_client_socket_unittest.cc ('k') | net/socket/transport_client_socket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698