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

Unified Diff: net/flip/flip_session.cc

Issue 344026: Add LoadLog to ClientSocket::Connect(). (Closed)
Patch Set: Minor build fixups and fixed mac bug. Created 11 years, 1 month 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/base/load_log_unittest.h ('k') | net/ftp/ftp_network_transaction.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/flip/flip_session.cc
diff --git a/net/flip/flip_session.cc b/net/flip/flip_session.cc
index 71524523955f5eb30cec236abfd03b3d1c4ed864..962124a00b0dc0c448b68f728ab0131c7f313f88 100644
--- a/net/flip/flip_session.cc
+++ b/net/flip/flip_session.cc
@@ -305,7 +305,8 @@ void FlipSession::OnTCPConnect(int result) {
socket = session_->socket_factory()->CreateSSLClientSocket(
socket, "" /* request_->url.HostNoBrackets() */ , ssl_config_);
connection_.set_socket(socket);
- int status = connection_.socket()->Connect(&ssl_connect_callback_);
+ // TODO(willchan): Plumb LoadLog into FLIP code.
+ int status = connection_.socket()->Connect(&ssl_connect_callback_, NULL);
CHECK(status == net::ERR_IO_PENDING);
} else {
connection_ready_ = true;
@@ -734,4 +735,3 @@ void FlipSession::OnLameDuck() {
}
} // namespace net
-
« no previous file with comments | « net/base/load_log_unittest.h ('k') | net/ftp/ftp_network_transaction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698