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

Unified Diff: net/socket/stream_socket.cc

Issue 1096203006: Collect all ConnectionAttempts from both sockets in TransportConnectJob. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@domrel_serverip1
Patch Set: Document why Do*ConnectComplete don't delete other socket Created 5 years, 7 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
Index: net/socket/stream_socket.cc
diff --git a/net/socket/stream_socket.cc b/net/socket/stream_socket.cc
index fb194f64625acccfdd323d9ce24e6072555a2ce7..0e9946b97162a89347a1c1e9161b7996a0d62c33 100644
--- a/net/socket/stream_socket.cc
+++ b/net/socket/stream_socket.cc
@@ -98,4 +98,18 @@ void StreamSocket::UseHistory::EmitPreconnectionHistograms() const {
UMA_HISTOGRAM_ENUMERATION("Net.PreconnectUtilization2", result, 9);
}
+StreamSocket::~StreamSocket() {
+}
+
+void StreamSocket::GetConnectionAttempts(ConnectionAttempts* out) const {
+ out->clear();
+}
+
+void StreamSocket::ClearConnectionAttempts() {
+}
+
+void StreamSocket::AddConnectionAttempts(const ConnectionAttempts& attempts) {
+ NOTIMPLEMENTED();
+}
+
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698