chromium/net/spdy/fuzzing/hpack_fuzz_util.h

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef NET_SPDY_FUZZING_HPACK_FUZZ_UTIL_H_
#define NET_SPDY_FUZZING_HPACK_FUZZ_UTIL_H_

#include <stddef.h>
#include <stdint.h>

#include <memory>
#include <vector>

#include "base/containers/span.h"
#include "net/third_party/quiche/src/quiche/http2/core/recording_headers_handler.h"
#include "net/third_party/quiche/src/quiche/http2/hpack/hpack_encoder.h"
#include "net/third_party/quiche/src/quiche/spdy/core/hpack/hpack_decoder_adapter.h"

namespace quiche {
class HttpHeaderBlock;
}

namespace spdy {

class HpackFuzzUtil {};

}  // namespace spdy

#endif  // NET_SPDY_FUZZING_HPACK_FUZZ_UTIL_H_