Index: net/quic/quic_connection_helper.cc |
diff --git a/net/quic/quic_connection_helper.cc b/net/quic/quic_connection_helper.cc |
index 9ad99cb90023e3617f5aee1ee5347b6e7d105402..703151b704fab1fb31531192cef453940ffc74c2 100644 |
--- a/net/quic/quic_connection_helper.cc |
+++ b/net/quic/quic_connection_helper.cc |
@@ -126,7 +126,9 @@ int QuicConnectionHelper::WritePacketToWire( |
if (rv >= 0) { |
*error = 0; |
} else { |
- UMA_HISTOGRAM_SPARSE_SLOWLY("Net.QuicSession.WriteError", -rv); |
+ if (rv != ERR_IO_PENDING) { |
+ UMA_HISTOGRAM_SPARSE_SLOWLY("Net.QuicSession.WriteError", -rv); |
+ } |
*error = rv; |
rv = -1; |
} |