// 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_SCTP_TRANSPORT_PROXY_H_ #define THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_ADAPTERS_SCTP_TRANSPORT_PROXY_H_ #include <memory> #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/sctp_transport_interface.h" // The SctpTransportProxy class takes care of thread-jumping when // connecting callbacks from a webrtc::SctpTransport to a // blink::RTCSctpTransport 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 signalling thread (the one that gets callbacks) namespace blink { class LocalFrame; class SctpTransportProxy : public webrtc::SctpTransportObserverInterface { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_MODULES_PEERCONNECTION_ADAPTERS_SCTP_TRANSPORT_PROXY_H_