| Index: media/audio/audio_output_proxy_unittest.cc
|
| diff --git a/media/audio/audio_output_proxy_unittest.cc b/media/audio/audio_output_proxy_unittest.cc
|
| index 49773984889c6e2adf68492f7794d0ebc74c56c1..1806ce661318c3c25ade1e9b61730c20937c059f 100644
|
| --- a/media/audio/audio_output_proxy_unittest.cc
|
| +++ b/media/audio/audio_output_proxy_unittest.cc
|
| @@ -166,6 +166,7 @@ class AudioOutputProxyTest : public testing::Test {
|
| dispatcher_impl_ = new AudioOutputDispatcherImpl(&manager(),
|
| params_,
|
| std::string(),
|
| + std::string(),
|
| close_delay);
|
|
|
| // Necessary to know how long the dispatcher will wait before posting
|
| @@ -472,7 +473,8 @@ class AudioOutputResamplerTest : public AudioOutputProxyTest {
|
| AudioParameters::AUDIO_PCM_LOW_LATENCY, CHANNEL_LAYOUT_STEREO,
|
| 16000, 16, 1024);
|
| resampler_ = new AudioOutputResampler(
|
| - &manager(), params_, resampler_params_, std::string(), close_delay);
|
| + &manager(), params_, resampler_params_, std::string(), std::string(),
|
| + close_delay);
|
| }
|
|
|
| virtual void OnStart() OVERRIDE {
|
|
|