Use quiche string libraries in third_party/quic/core/frames
gfe-relnote: n/a, no functional change
PiperOrigin-RevId: 285010062
Change-Id: I1c4fbc13ebd126223a67867f54309e1e086b4c3a
diff --git a/quic/core/frames/quic_new_token_frame.cc b/quic/core/frames/quic_new_token_frame.cc
index 51d03e7..2dfb97f 100644
--- a/quic/core/frames/quic_new_token_frame.cc
+++ b/quic/core/frames/quic_new_token_frame.cc
@@ -6,7 +6,7 @@
#include "net/third_party/quiche/src/quic/core/quic_constants.h"
#include "net/third_party/quiche/src/quic/platform/api/quic_logging.h"
-#include "net/third_party/quiche/src/quic/platform/api/quic_text_utils.h"
+#include "net/third_party/quiche/src/common/platform/api/quiche_text_utils.h"
namespace quic {
@@ -19,7 +19,7 @@
std::ostream& operator<<(std::ostream& os, const QuicNewTokenFrame& s) {
os << "{ control_frame_id: " << s.control_frame_id
- << ", token: " << QuicTextUtils::HexEncode(s.token) << " }\n";
+ << ", token: " << quiche::QuicheTextUtils::HexEncode(s.token) << " }\n";
return os;
}