2013-07-10 14:07:56 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2013 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.
|
|
|
|
|
*/
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef TEST_RUN_LOOP_H_
|
|
|
|
|
#define TEST_RUN_LOOP_H_
|
2013-07-10 14:07:56 +00:00
|
|
|
|
2018-10-25 10:45:47 -07:00
|
|
|
#include "test/single_threaded_task_queue.h"
|
|
|
|
|
|
2013-07-10 14:07:56 +00:00
|
|
|
namespace webrtc {
|
|
|
|
|
namespace test {
|
|
|
|
|
|
|
|
|
|
// Blocks until the user presses enter.
|
2018-10-25 10:45:47 -07:00
|
|
|
void PressEnterToContinue(SingleThreadedTaskQueueForTesting& task_queue);
|
2013-07-10 14:07:56 +00:00
|
|
|
|
|
|
|
|
} // namespace test
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // TEST_RUN_LOOP_H_
|