| Index: chrome/browser/media/router/presentation_service_delegate_impl_unittest.cc
|
| diff --git a/chrome/browser/media/router/presentation_service_delegate_impl_unittest.cc b/chrome/browser/media/router/presentation_service_delegate_impl_unittest.cc
|
| index abc64f924757e77a874649caa8a0f0aed6fd3a90..5e46bd0be37da060ebc6bc01aedfa5c40fee96ae 100644
|
| --- a/chrome/browser/media/router/presentation_service_delegate_impl_unittest.cc
|
| +++ b/chrome/browser/media/router/presentation_service_delegate_impl_unittest.cc
|
| @@ -394,9 +394,9 @@ TEST_F(PresentationServiceDelegateImplTest, ListenForConnnectionStateChange) {
|
| EXPECT_CALL(mock_create_connection_callbacks, OnCreateConnectionSuccess(_))
|
| .Times(1);
|
| std::unique_ptr<RouteRequestResult> result = RouteRequestResult::FromSuccess(
|
| - base::WrapUnique(new MediaRoute(
|
| + base::MakeUnique<MediaRoute>(
|
| "routeId", MediaSourceForPresentationUrl(kPresentationUrl1),
|
| - "mediaSinkId", "description", true, "", true)),
|
| + "mediaSinkId", "description", true, "", true),
|
| kPresentationId);
|
| for (const auto& route_response_callback : route_response_callbacks)
|
| route_response_callback.Run(*result);
|
|
|