| Index: net/quic/core/quic_multipath_sent_packet_manager.cc
|
| diff --git a/net/quic/core/quic_multipath_sent_packet_manager.cc b/net/quic/core/quic_multipath_sent_packet_manager.cc
|
| index d6366ac0e09ae0729bae04d2de9a3f6e2d35e327..e0173900e9820386e2c1d815ba63dacee882a31d 100644
|
| --- a/net/quic/core/quic_multipath_sent_packet_manager.cc
|
| +++ b/net/quic/core/quic_multipath_sent_packet_manager.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include <cstdint>
|
|
|
| -#include "base/strings/string_number_conversions.h"
|
| #include "net/quic/core/quic_bug_tracker.h"
|
| #include "net/quic/platform/api/quic_str_cat.h"
|
|
|
| @@ -327,8 +326,8 @@ string QuicMultipathSentPacketManager::GetDebugState() const {
|
| if (debug_state.empty()) {
|
| continue;
|
| }
|
| - debug_state_by_path =
|
| - debug_state_by_path + "[" + base::IntToString(i) + "]:" + debug_state;
|
| + debug_state_by_path = QuicStrCat(
|
| + debug_state_by_path, "[", i, "]:", debug_state);
|
| }
|
| return debug_state_by_path;
|
| }
|
|
|