12345678910111213141516171819202122232425262728293031323334 |
- #ifndef API_TEST_CREATE_TIME_CONTROLLER_H_
- #define API_TEST_CREATE_TIME_CONTROLLER_H_
- #include <memory>
- #include "api/call/call_factory_interface.h"
- #include "api/test/time_controller.h"
- namespace webrtc {
- std::unique_ptr<TimeController> CreateTimeController(
- ControlledAlarmClock* alarm);
- std::unique_ptr<TimeController> CreateSimulatedTimeController();
- std::unique_ptr<CallFactoryInterface> CreateTimeControllerBasedCallFactory(
- TimeController* time_controller);
- }
- #endif
|