(Auto)update libjingle 66541346-> 66556498

git-svn-id: http://webrtc.googlecode.com/svn/trunk@6088 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
buildbot@webrtc.org
2014-05-08 23:10:23 +00:00
parent 02b286bfc9
commit ca27236272
5 changed files with 85 additions and 20 deletions

View File

@ -47,7 +47,7 @@ class MockCall : public Call {
MockCall() : Call(NULL) {}
void EmitAudioMonitor(const AudioInfo& info) {
SignalAudioMonitor(this, info);
GetAudioSourceProxy()->SignalAudioMonitor(GetAudioSourceProxy(), info);
}
};
@ -56,7 +56,7 @@ class CurrentSpeakerMonitorTest : public testing::Test,
public:
CurrentSpeakerMonitorTest() {
call_ = new MockCall();
monitor_ = new CurrentSpeakerMonitor(call_, NULL);
monitor_ = new CurrentSpeakerMonitor(call_->GetAudioSourceProxy(), NULL);
// Shrink the minimum time betweeen switches to 10 ms so we don't have to
// slow down our tests.
monitor_->set_min_time_between_switches(kMinTimeBetweenSwitches);