(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:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user