blob: 41525d8defa88ceea6072bbafd87dc6a888ccc4a [file] [log] [blame]
/*
* 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.
*/
#ifndef TEST_RUN_LOOP_H_
#define TEST_RUN_LOOP_H_
#include "test/single_threaded_task_queue.h"
namespace webrtc {
namespace test {
// Blocks until the user presses enter.
void PressEnterToContinue(
DEPRECATED_SingleThreadedTaskQueueForTesting& task_queue);
} // namespace test
} // namespace webrtc
#endif // TEST_RUN_LOOP_H_