chromium/net/third_party/quiche/src/quiche/http2/hpack/decoder/hpack_block_decoder.cc

// 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/decoder/hpack_block_decoder.h"

#include <cstdint>
#include <ostream>
#include <string>

#include "absl/strings/str_cat.h"
#include "quiche/common/platform/api/quiche_flag_utils.h"
#include "quiche/common/platform/api/quiche_logging.h"

namespace http2 {

DecodeStatus HpackBlockDecoder::Decode(DecodeBuffer* db) {}

std::string HpackBlockDecoder::DebugString() const {}

std::ostream& operator<<(std::ostream& out, const HpackBlockDecoder& v) {}

}  // namespace http2