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_time.h b/quic/core/quic_time.h
index cd33649..9a5ae7d 100644
--- a/quic/core/quic_time.h
+++ b/quic/core/quic_time.h
@@ -75,7 +75,7 @@
       return time_offset_ == kQuicInfiniteTimeUs;
     }
 
-    std::string ToDebugValue() const;
+    std::string ToDebuggingValue() const;
 
    private:
     friend inline bool operator==(QuicTime::Delta lhs, QuicTime::Delta rhs);
@@ -275,7 +275,7 @@
 // Override stream output operator for gtest.
 inline std::ostream& operator<<(std::ostream& output,
                                 const QuicTime::Delta delta) {
-  output << delta.ToDebugValue();
+  output << delta.ToDebuggingValue();
   return output;
 }
 }  // namespace quic