12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef TEST_PEER_SCENARIO_SDP_CALLBACKS_H_
- #define TEST_PEER_SCENARIO_SDP_CALLBACKS_H_
- #include "api/peer_connection_interface.h"
- namespace webrtc {
- namespace test {
- namespace webrtc_sdp_obs_impl {
- class SdpSetObserversInterface : public SetSessionDescriptionObserver,
- public SetRemoteDescriptionObserverInterface {
- };
- }
- webrtc_sdp_obs_impl::SdpSetObserversInterface* SdpSetObserver(
- std::function<void()> callback);
- CreateSessionDescriptionObserver* SdpCreateObserver(
- std::function<void(SessionDescriptionInterface*)> callback);
- }
- }
- #endif
|