#ifndef SERVICES_NETWORK_WEB_TRANSPORT_H_
#define SERVICES_NETWORK_WEB_TRANSPORT_H_
#include <memory>
#include <string_view>
#include "base/containers/queue.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "net/quic/web_transport_client.h"
#include "services/network/public/mojom/web_transport.mojom.h"
class GURL;
namespace url {
class Origin;
}
namespace net {
class NetworkAnonymizationKey;
}
namespace network {
class NetworkContext;
class COMPONENT_EXPORT(NETWORK_SERVICE) WebTransport final
: public mojom::WebTransport,
public net::WebTransportClientVisitor { … };
}
#endif