From 00f11f5e2445d5ede48c394e8478308812bbbb71 Mon Sep 17 00:00:00 2001 From: "solenberg@webrtc.org" Date: Wed, 27 Aug 2014 08:52:17 +0000 Subject: [PATCH] - Make local constant non-static. - Remove spammy log line. BUG= R=henrike@webrtc.org, kjellander@webrtc.org Review URL: https://webrtc-codereview.appspot.com/21339004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6987 4adac7df-926f-26a2-2b94-8c16560cd09d --- talk/app/webrtc/peerconnection_unittest.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/talk/app/webrtc/peerconnection_unittest.cc b/talk/app/webrtc/peerconnection_unittest.cc index 8a098b423c..e19405d8ba 100644 --- a/talk/app/webrtc/peerconnection_unittest.cc +++ b/talk/app/webrtc/peerconnection_unittest.cc @@ -376,7 +376,6 @@ class PeerConnectionTestClientBase observer, NULL, PeerConnectionInterface::kStatsOutputLevelStandard)); EXPECT_TRUE_WAIT(observer->called(), kMaxWaitMs); int bw = observer->AvailableReceiveBandwidth(); - LOG(INFO) << "Available Receive Bandwidth: " << bw; return bw; } @@ -1046,7 +1045,7 @@ class P2PTestConductor : public testing::Test { // Wait until 'size' bytes of audio has been seen by the receiver, on the // first audio stream. void WaitForAudioData(int size) { - static const int kMaxWaitForAudioDataMs = 10000; + const int kMaxWaitForAudioDataMs = 10000; StreamCollectionInterface* local_streams = initializing_client()->local_streams();