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:
pbos@webrtc.org 2013-05-21 11:09:36 +00:00
parent 375deb4e19
commit d2541e81c6

View File

@ -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();