chromium/net/third_party/quiche/src/quiche/quic/core/qpack/qpack_send_stream.cc

// Copyright 2019 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/quic/core/qpack/qpack_send_stream.h"

#include "absl/base/macros.h"
#include "absl/strings/string_view.h"
#include "quiche/quic/core/quic_session.h"

namespace quic {
QpackSendStream::QpackSendStream(QuicStreamId id, QuicSession* session,
                                 uint64_t http3_stream_type)
    :{}

void QpackSendStream::OnStreamReset(const QuicRstStreamFrame& /*frame*/) {}

bool QpackSendStream::OnStopSending(QuicResetStreamError /* code */) {}

void QpackSendStream::WriteStreamData(absl::string_view data) {}

uint64_t QpackSendStream::NumBytesBuffered() const {}

void QpackSendStream::MaybeSendStreamType() {}

}  // namespace quic