#include "quiche/http2/adapter/http2_protocol.h" #include <string> #include <utility> #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" namespace http2 { namespace adapter { std::pair<absl::string_view, bool> GetStringView(const HeaderRep& rep) { … } bool operator==(const Http2Setting& a, const Http2Setting& b) { … } absl::string_view Http2SettingsIdToString(uint16_t id) { … } absl::string_view Http2ErrorCodeToString(Http2ErrorCode error_code) { … } } // namespace adapter } // namespace http2