| Index: chrome/browser/renderer_host/audio_renderer_host_unittest.cc
|
| diff --git a/chrome/browser/renderer_host/audio_renderer_host_unittest.cc b/chrome/browser/renderer_host/audio_renderer_host_unittest.cc
|
| index 64ce7ddd86acb212bf7f44c3d7bb6c34002776dc..7c3b500934343389c76b6ab241245496f9e1a748 100644
|
| --- a/chrome/browser/renderer_host/audio_renderer_host_unittest.cc
|
| +++ b/chrome/browser/renderer_host/audio_renderer_host_unittest.cc
|
| @@ -218,7 +218,7 @@ class AudioRendererHostTest : public testing::Test {
|
| params.params.channels = 2;
|
| params.params.sample_rate = AudioParameters::kAudioCDSampleRate;
|
| params.params.bits_per_sample = 16;
|
| - params.packet_size = 0;
|
| + params.params.samples_per_packet = 0;
|
|
|
| // Send a create stream message to the audio output stream and wait until
|
| // we receive the created message.
|
| @@ -244,7 +244,7 @@ class AudioRendererHostTest : public testing::Test {
|
| params.params.channels = 2;
|
| params.params.sample_rate = AudioParameters::kAudioCDSampleRate;
|
| params.params.bits_per_sample = 16;
|
| - params.packet_size = 0;
|
| + params.params.samples_per_packet = 0;
|
|
|
| // Send a create stream message to the audio output stream and wait until
|
| // we receive the created message.
|
|
|