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

// Copyright (c) 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.

// SpdyNoOpVisitor implements several of the visitor and handler interfaces
// to make it easier to write tests that need to provide instances. Other
// interfaces can be added as needed.

#ifndef QUICHE_HTTP2_CORE_SPDY_NO_OP_VISITOR_H_
#define QUICHE_HTTP2_CORE_SPDY_NO_OP_VISITOR_H_

#include <cstddef>
#include <cstdint>
#include <string>

#include "absl/strings/string_view.h"
#include "quiche/http2/core/http2_frame_decoder_adapter.h"
#include "quiche/http2/core/spdy_alt_svc_wire_format.h"
#include "quiche/http2/core/spdy_headers_handler_interface.h"
#include "quiche/http2/core/spdy_protocol.h"
#include "quiche/common/platform/api/quiche_export.h"

namespace spdy {

class QUICHE_EXPORT SpdyNoOpVisitor : public SpdyFramerVisitorInterface,
                                      public SpdyFramerDebugVisitorInterface,
                                      public SpdyHeadersHandlerInterface {};

}  // namespace spdy

#endif  // QUICHE_HTTP2_CORE_SPDY_NO_OP_VISITOR_H_