Rename ToDebugValue to ToDebuggingValue() for QuicBandwidth and QuicTime::Delta. This change will make all the logging methods have a consistent name.
gfe-relnote: n/a (test-only change)
* merge instruction: if ToDebugValue is called in chromium files, update to ToDebuggingValue.
PiperOrigin-RevId: 248047439
Change-Id: Ic2797da50ed8205fa8de44d7628add1d4093520c
diff --git a/quic/core/quic_bandwidth.cc b/quic/core/quic_bandwidth.cc
index a1dbf67..9fcc3b9 100644
--- a/quic/core/quic_bandwidth.cc
+++ b/quic/core/quic_bandwidth.cc
@@ -11,7 +11,7 @@
namespace quic {
-std::string QuicBandwidth::ToDebugValue() const {
+std::string QuicBandwidth::ToDebuggingValue() const {
if (bits_per_second_ < 80000) {
return QuicStringPrintf("%" PRId64 " bits/s (%" PRId64 " bytes/s)",
bits_per_second_, bits_per_second_ / 8);