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

Unified Diff: chrome/browser/image_holder.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/image_holder.cc
diff --git a/chrome/browser/image_holder.cc b/chrome/browser/image_holder.cc
index aeaec5ce4fd6daf2accdebc912747443a6cd7453..08d5bb2593118a13fca26e69a5f829eb6b766d1a 100644
--- a/chrome/browser/image_holder.cc
+++ b/chrome/browser/image_holder.cc
@@ -60,7 +60,7 @@ void ImageHolder::CreateBitmapFetcher(const GURL& url) {
if (url.is_valid()) {
fetchers_.push_back(new chrome::BitmapFetcher(url, this));
- DVLOG(2) << __FUNCTION__ << "Pushing bitmap " << url;
+ DVLOG(2) << __func__ << "Pushing bitmap " << url;
}
}
@@ -91,7 +91,7 @@ void ImageHolder::OnFetchComplete(const GURL& url, const SkBitmap* bitmap) {
if (bitmap != NULL)
image_.AddRepresentation(gfx::ImageSkiaRep(*bitmap, 2.0));
} else {
- DVLOG(2) << __FUNCTION__ << "Unmatched bitmap arrived " << url;
+ DVLOG(2) << __func__ << "Unmatched bitmap arrived " << url;
}
// Notify callback of bitmap arrival.
« no previous file with comments | « chrome/browser/extensions/api/downloads/downloads_api.cc ('k') | chrome/browser/importer/external_process_importer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698