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

Unified Diff: net/socket/ssl_client_socket_pool.cc

Issue 2533063002: Fix Net.Socket.IdleSocketTimeSaving histogram (Closed)
Patch Set: self review Created 4 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/socket/ssl_client_socket_pool.h ('k') | net/socket/transport_client_socket_pool.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_pool.cc
diff --git a/net/socket/ssl_client_socket_pool.cc b/net/socket/ssl_client_socket_pool.cc
index b6cb5cd2ab9b67edc9d361091dbbc34f0d12fac7..9b4ff35a39fe891b4188c3e3f0945e2e83a69cbd 100644
--- a/net/socket/ssl_client_socket_pool.cc
+++ b/net/socket/ssl_client_socket_pool.cc
@@ -609,10 +609,12 @@ void SSLClientSocketPool::CancelRequest(const std::string& group_name,
base_.CancelRequest(group_name, handle);
}
-void SSLClientSocketPool::ReleaseSocket(const std::string& group_name,
- std::unique_ptr<StreamSocket> socket,
- int id) {
- base_.ReleaseSocket(group_name, std::move(socket), id);
+void SSLClientSocketPool::ReleaseSocket(
+ const std::string& group_name,
+ std::unique_ptr<StreamSocket> socket,
+ int id,
+ const LoadTimingInfo::ConnectTiming& connect_timing) {
+ base_.ReleaseSocket(group_name, std::move(socket), id, connect_timing);
}
void SSLClientSocketPool::FlushWithError(int error) {
« no previous file with comments | « net/socket/ssl_client_socket_pool.h ('k') | net/socket/transport_client_socket_pool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698