| Index: content/renderer/presentation/presentation_dispatcher.cc
|
| diff --git a/content/renderer/presentation/presentation_dispatcher.cc b/content/renderer/presentation/presentation_dispatcher.cc
|
| index 293b030a88d9bfd911a4f29983d88b82e5d1d423..949f03baf034f717371f23ea9fb1800912f52fbb 100644
|
| --- a/content/renderer/presentation/presentation_dispatcher.cc
|
| +++ b/content/renderer/presentation/presentation_dispatcher.cc
|
| @@ -386,8 +386,8 @@ void PresentationDispatcher::OnSessionCreated(
|
|
|
| DCHECK(!session_info.is_null());
|
| presentation_service_->ListenForSessionMessages(session_info.Clone());
|
| - callback->onSuccess(base::WrapUnique(
|
| - new PresentationConnectionClient(std::move(session_info))));
|
| + callback->onSuccess(
|
| + base::MakeUnique<PresentationConnectionClient>(std::move(session_info)));
|
| }
|
|
|
| void PresentationDispatcher::OnConnectionStateChanged(
|
|
|