// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_ADAPTERS_DTLS_TRANSPORT_PROXY_H_ #define THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_ADAPTERS_DTLS_TRANSPORT_PROXY_H_ #include "base/memory/raw_ptr.h" #include "base/memory/scoped_refptr.h" #include "base/task/single_thread_task_runner.h" #include "third_party/blink/renderer/platform/heap/cross_thread_handle.h" #include "third_party/blink/renderer/platform/heap/garbage_collected.h" #include "third_party/blink/renderer/platform/heap/visitor.h" #include "third_party/webrtc/api/dtls_transport_interface.h" // The DtlsTransportProxy class takes care of thread-jumping when // connecting callbacks from a webrtc::DtlsTransport to a // blink::RTCDtlsTransport object. // Its design is modeled on the IceTransportProxy design, // but does not use so many layers of indirection - there is // no control, and all information is passed via callbacks on the Delegate. // The proxy thread = the Blink main thread // The host thread = the webrtc network thread (the one that gets callbacks) namespace blink { class LocalFrame; class DtlsTransportProxy : public webrtc::DtlsTransportObserverInterface { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_ADAPTERS_DTLS_TRANSPORT_PROXY_H_