// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "quiche/http2/hpack/http2_hpack_constants.h" #include <ostream> #include <string> #include "absl/strings/str_cat.h" namespace http2 { std::string HpackEntryTypeToString(HpackEntryType v) { … } std::ostream& operator<<(std::ostream& out, HpackEntryType v) { … } } // namespace http2