// 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. #include "quiche/http2/core/spdy_no_op_visitor.h" #include <cstdint> #include <type_traits> #include "quiche/http2/core/spdy_headers_handler_interface.h" #include "quiche/http2/core/spdy_protocol.h" namespace spdy { SpdyNoOpVisitor::SpdyNoOpVisitor() { … } SpdyNoOpVisitor::~SpdyNoOpVisitor() = default; SpdyHeadersHandlerInterface* SpdyNoOpVisitor::OnHeaderFrameStart( SpdyStreamId /*stream_id*/) { … } bool SpdyNoOpVisitor::OnUnknownFrame(SpdyStreamId /*stream_id*/, uint8_t /*frame_type*/) { … } } // namespace spdy