Remove <iostream> usage from loopback.cc
BUG= R=mflodman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1522004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4077 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
375deb4e19
commit
d2541e81c6
@ -10,7 +10,7 @@
|
||||
|
||||
#include "testing/gtest/include/gtest/gtest.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <cstdio>
|
||||
#include <map>
|
||||
|
||||
#include "webrtc/typedefs.h"
|
||||
@ -76,8 +76,8 @@ TEST_F(LoopbackTest, Test) {
|
||||
camera->Start();
|
||||
|
||||
// TODO(pbos): Run this time limited (optionally), so it can run automated.
|
||||
std::cout << ">> Press ENTER to continue..." << std::endl;
|
||||
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
|
||||
puts(">> Press ENTER to continue...");
|
||||
while (getchar() != '\n' && !feof(stdin));
|
||||
|
||||
receive_stream->StopReceive();
|
||||
send_stream->StopSend();
|
||||
|
Loading…
x
Reference in New Issue
Block a user