// 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/varint/hpack_varint_encoder.h" #include <limits> #include <string> #include "quiche/common/platform/api/quiche_logging.h" namespace http2 { // static void HpackVarintEncoder::Encode(uint8_t high_bits, uint8_t prefix_length, uint64_t varint, std::string* output) { … } } // namespace http2