Merge kAckDecimationDelay & kAckDelayShift.

PiperOrigin-RevId: 337371059
Change-Id: I6136e8f268749c134e8f4b1135558c8f49f4438c
diff --git a/quic/core/quic_constants.h b/quic/core/quic_constants.h
index eaf0170..a1126c0 100644
--- a/quic/core/quic_constants.h
+++ b/quic/core/quic_constants.h
@@ -265,6 +265,8 @@
 // This intends to avoid the beginning of slow start, when CWNDs may be
 // rapidly increasing.
 const QuicPacketCount kMinReceivedBeforeAckDecimation = 100;
+// One quarter RTT delay when doing ack decimation.
+const float kAckDecimationDelay = 0.25;
 
 // The default alarm granularity assumed by QUIC code.
 const QuicTime::Delta kAlarmGranularity = QuicTime::Delta::FromMilliseconds(1);