gfe-relnote: (n/a) Remove unused kMinLossDelayMs and kDefaultAdaptiveLossDelayShift
from general_loss_algorithm.cc. Cleanup only.

PiperOrigin-RevId: 294918177
Change-Id: If1fefca91bee447722aa2af761fa5df9cd64650f
diff --git a/quic/core/congestion_control/general_loss_algorithm.cc b/quic/core/congestion_control/general_loss_algorithm.cc
index 3cf22a2..25ad3a2 100644
--- a/quic/core/congestion_control/general_loss_algorithm.cc
+++ b/quic/core/congestion_control/general_loss_algorithm.cc
@@ -12,17 +12,6 @@
 
 namespace quic {
 
-namespace {
-
-// The minimum delay before a packet will be considered lost,
-// regardless of SRTT.  Half of the minimum TLP, since the loss algorithm only
-// triggers when a nack has been receieved for the packet.
-static const size_t kMinLossDelayMs = 5;
-// Default fraction (1/16) of an RTT when doing adaptive loss detection.
-static const int kDefaultAdaptiveLossDelayShift = 4;
-
-}  // namespace
-
 GeneralLossAlgorithm::GeneralLossAlgorithm()
     : loss_detection_timeout_(QuicTime::Zero()),
       reordering_shift_(kDefaultLossDelayShift),