chromium/net/third_party/quiche/src/quiche/http2/hpack/decoder/hpack_string_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_string_decoder.h"

#include <ostream>
#include <string>

#include "absl/strings/str_cat.h"

namespace http2 {

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

// static
std::string HpackStringDecoder::StateToString(StringDecoderState v) {}

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

}  // namespace http2