#include "test/run_loop.h"
#include "rtc_base/time_utils.h"
namespace webrtc {
namespace test {
RunLoop::RunLoop() { … }
RunLoop::~RunLoop() { … }
TaskQueueBase* RunLoop::task_queue() { … }
void RunLoop::Run() { … }
void RunLoop::Quit() { … }
void RunLoop::Flush() { … }
RunLoop::FakeSocketServer::FakeSocketServer() = default;
RunLoop::FakeSocketServer::~FakeSocketServer() = default;
void RunLoop::FakeSocketServer::FailNextWait() { … }
bool RunLoop::FakeSocketServer::Wait(webrtc::TimeDelta max_wait_duration,
bool process_io) { … }
void RunLoop::FakeSocketServer::WakeUp() { … }
rtc::Socket* RunLoop::FakeSocketServer::CreateSocket(int family, int type) { … }
RunLoop::WorkerThread::WorkerThread(rtc::SocketServer* ss)
: … { … }
}
}