| Index: content/common/webkitplatformsupport_impl.cc
|
| diff --git a/content/common/webkitplatformsupport_impl.cc b/content/common/webkitplatformsupport_impl.cc
|
| index 1328bd5d1042f36f48ed6cb7cb0e78b684020829..b6c072844c6c7dcabb1253f7970cf797435b277e 100644
|
| --- a/content/common/webkitplatformsupport_impl.cc
|
| +++ b/content/common/webkitplatformsupport_impl.cc
|
| @@ -17,10 +17,12 @@
|
| namespace {
|
| void RunWebAudioMediaCodec(
|
| base::SharedMemoryHandle encoded_data_handle,
|
| - base::FileDescriptor pcm_output) {
|
| + base::FileDescriptor pcm_output,
|
| + size_t data_size) {
|
| content::ChildThread::current()->Send(
|
| new ViewHostMsg_RunWebAudioMediaCodec(encoded_data_handle,
|
| - pcm_output));
|
| + pcm_output,
|
| + data_size));
|
| }
|
|
|
| } // anonymous namespace
|
|
|