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

Unified Diff: net/ftp/ftp_network_transaction_unittest.cc

Issue 126303: Add a "LoadLog*" parameter to transactions, hostresolver, clientsocketpool. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync again Created 11 years, 4 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/ftp/ftp_network_transaction.cc ('k') | net/ftp/ftp_transaction.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ftp/ftp_network_transaction_unittest.cc
===================================================================
--- net/ftp/ftp_network_transaction_unittest.cc (revision 23124)
+++ net/ftp/ftp_network_transaction_unittest.cc (working copy)
@@ -309,7 +309,8 @@
mock_socket_factory_.AddMockSocket(&data_socket1);
mock_socket_factory_.AddMockSocket(&data_socket2);
FtpRequestInfo request_info = GetRequestInfo(request);
- ASSERT_EQ(ERR_IO_PENDING, transaction_.Start(&request_info, &callback_));
+ ASSERT_EQ(ERR_IO_PENDING,
+ transaction_.Start(NULL, &request_info, &callback_));
EXPECT_EQ(expected_result, callback_.WaitForResult());
EXPECT_EQ(FtpMockControlSocket::QUIT, ctrl_socket->state());
if (expected_result == OK) {
@@ -343,7 +344,8 @@
TEST_F(FtpNetworkTransactionTest, FailedLookup) {
FtpRequestInfo request_info = GetRequestInfo("ftp://badhost");
host_resolver_->rules()->AddSimulatedFailure("badhost");
- ASSERT_EQ(ERR_IO_PENDING, transaction_.Start(&request_info, &callback_));
+ ASSERT_EQ(ERR_IO_PENDING,
+ transaction_.Start(NULL, &request_info, &callback_));
EXPECT_EQ(ERR_NAME_NOT_RESOLVED, callback_.WaitForResult());
}
« no previous file with comments | « net/ftp/ftp_network_transaction.cc ('k') | net/ftp/ftp_transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698