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

Unified Diff: net/quic/core/quic_stream_sequencer.cc

Issue 2516033003: Landing Recent QUIC changes until Mon Nov 14 04:43:50 2016 +0000 (Closed)
Patch Set: Remove unused UpdatePacketGapSentHistogram() function. 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/quic/core/quic_stream.h ('k') | net/quic/core/quic_tag.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_stream_sequencer.cc
diff --git a/net/quic/core/quic_stream_sequencer.cc b/net/quic/core/quic_stream_sequencer.cc
index c0ab7028f1322c10ae099bfc67b832ecb1800dfa..f0b80a7ad9e3ce5d4fcb560100e83158972931f5 100644
--- a/net/quic/core/quic_stream_sequencer.cc
+++ b/net/quic/core/quic_stream_sequencer.cc
@@ -60,10 +60,10 @@ void QuicStreamSequencer::OnStreamFrame(const QuicStreamFrame& frame) {
clock_->ApproximateNow(), &bytes_written, &error_details);
if (result != QUIC_NO_ERROR) {
string details = "Stream" + base::Uint64ToString(stream_->id()) + ": " +
- QuicUtils::ErrorToString(result) + ": " + error_details +
+ QuicErrorCodeToString(result) + ": " + error_details +
"\nPeer Address: " +
stream_->PeerAddressOfLatestPacket().ToString();
- DLOG(WARNING) << QuicUtils::ErrorToString(result);
+ DLOG(WARNING) << QuicErrorCodeToString(result);
DLOG(WARNING) << details;
stream_->CloseConnectionWithDetails(result, details);
return;
« no previous file with comments | « net/quic/core/quic_stream.h ('k') | net/quic/core/quic_tag.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698