Remove Http2String wrapper for std::string.
gfe-relnote: n/a, no functional change.
PiperOrigin-RevId: 263816460
Change-Id: I4f365540414e6a3d78fd00ce6b39a4cdd4c14140
diff --git a/spdy/core/http2_frame_decoder_adapter.h b/spdy/core/http2_frame_decoder_adapter.h
index 3c05858..93da684 100644
--- a/spdy/core/http2_frame_decoder_adapter.h
+++ b/spdy/core/http2_frame_decoder_adapter.h
@@ -9,6 +9,7 @@
#include <cstdint>
#include <memory>
+#include <string>
#include "net/third_party/quiche/src/http2/decoder/http2_frame_decoder.h"
#include "net/third_party/quiche/src/http2/platform/api/http2_optional.h"
@@ -251,8 +252,8 @@
Http2Optional<size_t> opt_pad_length_;
// Temporary buffers for the AltSvc fields.
- Http2String alt_svc_origin_;
- Http2String alt_svc_value_;
+ std::string alt_svc_origin_;
+ std::string alt_svc_value_;
// Listener used if we transition to an error state; the listener ignores all
// the callbacks.