chromium/net/third_party/quiche/src/quiche/http2/core/spdy_headers_handler_interface.h

// Copyright 2015 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.

#ifndef QUICHE_HTTP2_CORE_SPDY_HEADERS_HANDLER_INTERFACE_H_
#define QUICHE_HTTP2_CORE_SPDY_HEADERS_HANDLER_INTERFACE_H_

#include <stddef.h>

#include "absl/strings/string_view.h"
#include "quiche/common/platform/api/quiche_export.h"

namespace spdy {

// This interface defines how an object that accepts header data should behave.
// It is used by both SpdyHeadersBlockParser and HpackDecoder.
class QUICHE_EXPORT SpdyHeadersHandlerInterface {};

}  // namespace spdy

#endif  // QUICHE_HTTP2_CORE_SPDY_HEADERS_HANDLER_INTERFACE_H_