
Using simulated time implementation of TaskQueue with TaskQueueForTest. Bug: webrtc:10365 Change-Id: I9f853133aa9fcd5858a5e2e1e0f47ab1a6a5ca18 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/127292 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Sebastian Jansson <srte@webrtc.org> Cr-Commit-Position: refs/heads/master@{#27081}
18 lines
576 B
C++
18 lines
576 B
C++
/*
|
|
* Copyright 2018 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "rtc_base/task_queue_for_test.h"
|
|
|
|
namespace rtc {
|
|
namespace test {
|
|
TaskQueueForTest::~TaskQueueForTest() = default;
|
|
} // namespace test
|
|
} // namespace rtc
|