| Index: chrome/browser/media/router/presentation_service_delegate_impl.cc
|
| diff --git a/chrome/browser/media/router/presentation_service_delegate_impl.cc b/chrome/browser/media/router/presentation_service_delegate_impl.cc
|
| index 6e8f811648c07ba5ba361c950187c69294c0d29c..8b2f95996570bd577a1d939c0b88992537007f49 100644
|
| --- a/chrome/browser/media/router/presentation_service_delegate_impl.cc
|
| +++ b/chrome/browser/media/router/presentation_service_delegate_impl.cc
|
| @@ -236,15 +236,15 @@ void PresentationFrame::ListenForConnectionStateChange(
|
| state_changed_cb) {
|
| auto it = presentation_id_to_route_id_.find(connection.presentation_id);
|
| if (it == presentation_id_to_route_id_.end()) {
|
| - DLOG(ERROR) << __FUNCTION__ << "route id not found for presentation: "
|
| + DLOG(ERROR) << __func__ << "route id not found for presentation: "
|
| << connection.presentation_id;
|
| return;
|
| }
|
|
|
| const MediaRoute::Id& route_id = it->second;
|
| if (connection_state_subscriptions_.contains(route_id)) {
|
| - DLOG(ERROR) << __FUNCTION__ << "Already listening connection state change "
|
| - "for route: "
|
| + DLOG(ERROR) << __func__
|
| + << "Already listening connection state change for route: "
|
| << route_id;
|
| return;
|
| }
|
|
|