/* * Copyright 2013 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef PC_WEBRTC_SESSION_DESCRIPTION_FACTORY_H_ #define PC_WEBRTC_SESSION_DESCRIPTION_FACTORY_H_ #include <stdint.h> #include <functional> #include <memory> #include <queue> #include <string> #include "absl/functional/any_invocable.h" #include "api/jsep.h" #include "api/peer_connection_interface.h" #include "api/scoped_refptr.h" #include "api/task_queue/task_queue_base.h" #include "p2p/base/transport_description.h" #include "p2p/base/transport_description_factory.h" #include "pc/media_session.h" #include "pc/sdp_state_provider.h" #include "rtc_base/rtc_certificate.h" #include "rtc_base/rtc_certificate_generator.h" #include "rtc_base/unique_id_generator.h" #include "rtc_base/weak_ptr.h" namespace webrtc { // This class is used to create offer/answer session description. Certificates // for WebRtcSession/DTLS are either supplied at construction or generated // asynchronously. It queues the create offer/answer request until the // certificate generation has completed, i.e. when OnCertificateRequestFailed or // OnCertificateReady is called. class WebRtcSessionDescriptionFactory { … }; } // namespace webrtc #endif // PC_WEBRTC_SESSION_DESCRIPTION_FACTORY_H_