Replace QuicString with std::string, pass 1
This replaces QuicString with std::string in all of the "QUIC proper". I will
delete QuicString once all code using it is gone.
gfe-relnote: n/a (no functional change)
PiperOrigin-RevId: 237872023
Change-Id: I82de62c9855516b15039734d05155917e68ff4ee
diff --git a/quic/core/quic_ietf_framer_test.cc b/quic/core/quic_ietf_framer_test.cc
index a959791..9e4f3b0 100644
--- a/quic/core/quic_ietf_framer_test.cc
+++ b/quic/core/quic_ietf_framer_test.cc
@@ -796,7 +796,7 @@
NETWORK_BYTE_ORDER);
// empty string,
- QuicString test_string = "Ich Bin Ein Jelly Donut?";
+ std::string test_string = "Ich Bin Ein Jelly Donut?";
QuicConnectionCloseFrame sent_frame;
sent_frame.error_code = static_cast<QuicErrorCode>(0);
sent_frame.error_details = test_string;
@@ -831,7 +831,7 @@
NETWORK_BYTE_ORDER);
// empty string,
- QuicString test_string = "Ich Bin Ein Jelly Donut?";
+ std::string test_string = "Ich Bin Ein Jelly Donut?";
QuicApplicationCloseFrame sent_frame;
sent_frame.error_code = static_cast<QuicErrorCode>(0);
sent_frame.error_details = test_string;