| Index: media/cast/test/receiver.cc
|
| diff --git a/media/cast/test/receiver.cc b/media/cast/test/receiver.cc
|
| index fb8604cca5e672282b60435e93fe53438aa84e44..303c5ee287e2e7418a7b54d67c91afe205a4adc0 100644
|
| --- a/media/cast/test/receiver.cc
|
| +++ b/media/cast/test/receiver.cc
|
| @@ -282,9 +282,9 @@ int main(int argc, char** argv) {
|
| local_end_point,
|
| remote_end_point,
|
| base::Bind(&media::cast::UpdateCastTransportStatus)));
|
| - scoped_ptr<media::cast::CastReceiver> cast_receiver(
|
| - media::cast::CastReceiver::CreateCastReceiver(
|
| - cast_environment, audio_config, video_config, transport.get()));
|
| + scoped_ptr<media::cast::CastReceiver> cast_receiver =
|
| + media::cast::CastReceiver::Create(
|
| + cast_environment, audio_config, video_config, transport.get());
|
|
|
| // TODO(hubbe): Make the cast receiver do this automatically.
|
| transport->StartReceiving(cast_receiver->packet_receiver());
|
|
|