Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5159)

Unified Diff: chrome/browser/media/router/presentation_service_delegate_impl.cc

Issue 2161193003: Use __func__ instead of __FUNCTION__. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resync Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698