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

Unified Diff: net/quic/quic_reliable_client_stream.cc

Issue 641183008: merge to m39: Fix a bug where QUIC connections would not fallback to TCP if the connection fails. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2171
Patch Set: Created 6 years, 2 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/quic/quic_reliable_client_stream.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_reliable_client_stream.cc
diff --git a/net/quic/quic_reliable_client_stream.cc b/net/quic/quic_reliable_client_stream.cc
index 79397bc58cb92feccc2f9fae721706927794e3d2..af4b462d1602e46b0b551fe185b734feb77b3fb7 100644
--- a/net/quic/quic_reliable_client_stream.cc
+++ b/net/quic/quic_reliable_client_stream.cc
@@ -42,12 +42,12 @@ uint32 QuicReliableClientStream::ProcessData(const char* data,
return data_len;
}
-void QuicReliableClientStream::OnFinRead() {
+void QuicReliableClientStream::OnClose() {
if (delegate_) {
delegate_->OnClose(connection_error());
delegate_ = NULL;
}
- ReliableQuicStream::OnFinRead();
+ ReliableQuicStream::OnClose();
}
void QuicReliableClientStream::OnCanWrite() {
« no previous file with comments | « net/quic/quic_reliable_client_stream.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698