chromium/net/third_party/quiche/src/quiche/web_transport/complete_buffer_visitor.cc

// Copyright 2023 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/web_transport/complete_buffer_visitor.h"

#include <string>
#include <utility>

#include "quiche/common/platform/api/quiche_logging.h"
#include "quiche/common/quiche_stream.h"

namespace webtransport {

void CompleteBufferVisitor::OnCanRead() {}

void CompleteBufferVisitor::OnCanWrite() {}

void CompleteBufferVisitor::SetOutgoingData(std::string data) {}

}  // namespace webtransport