chromium/third_party/blink/renderer/modules/webtransport/send_stream.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/modules/webtransport/send_stream.h"

#include <utility>

#include "base/notreached.h"
#include "third_party/blink/renderer/modules/webtransport/web_transport.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"

namespace blink {

namespace {

class OutgoingStreamClient final
    : public GarbageCollected<OutgoingStreamClient>,
      public OutgoingStream::Client {};

}  // namespace

SendStream::SendStream(ScriptState* script_state,
                       WebTransport* web_transport,
                       uint32_t stream_id,
                       mojo::ScopedDataPipeProducerHandle handle)
    :{}

SendStream::~SendStream() = default;

void SendStream::Trace(Visitor* visitor) const {}

}  // namespace blink