123456789101112131415161718192021222324 |
- #ifndef RTC_BASE_TASK_QUEUE_STDLIB_H_
- #define RTC_BASE_TASK_QUEUE_STDLIB_H_
- #include <memory>
- #include "api/task_queue/task_queue_factory.h"
- namespace webrtc {
- std::unique_ptr<TaskQueueFactory> CreateTaskQueueStdlibFactory();
- }
- #endif
|