blob: 5dcc15c70fae4aa8759e4cf6de9fa58eaf71b47d [file] [log] [blame]
QUICHE team82dee2f2019-01-18 12:35:12 -05001// Copyright (c) 2016 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "net/third_party/quiche/src/spdy/core/spdy_no_op_visitor.h"
6
7#include <type_traits>
8
9namespace spdy {
10namespace test {
11
12SpdyNoOpVisitor::SpdyNoOpVisitor() {
13 static_assert(std::is_abstract<SpdyNoOpVisitor>::value == false,
14 "Need to update SpdyNoOpVisitor.");
15}
16SpdyNoOpVisitor::~SpdyNoOpVisitor() = default;
17
18SpdyHeadersHandlerInterface* SpdyNoOpVisitor::OnHeaderFrameStart(
19 SpdyStreamId stream_id) {
20 return this;
21}
22
23bool SpdyNoOpVisitor::OnUnknownFrame(SpdyStreamId stream_id,
24 uint8_t frame_type) {
25 return true;
26}
27
28} // namespace test
29} // namespace spdy