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

Unified Diff: chrome/browser/media/output_protection_proxy.cc

Issue 2518403004: media: Use __func__ instead of __FUNCTION__ (Closed)
Patch Set: rebase Created 4 years 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/output_protection_proxy.cc
diff --git a/chrome/browser/media/output_protection_proxy.cc b/chrome/browser/media/output_protection_proxy.cc
index 9225578046f8a3b14fc5f71de27d406f3fe6b09d..d4416a71cc1e2c7723150d0822293f90821f8d6c 100644
--- a/chrome/browser/media/output_protection_proxy.cc
+++ b/chrome/browser/media/output_protection_proxy.cc
@@ -27,7 +27,7 @@ OutputProtectionProxy::~OutputProtectionProxy() {
}
void OutputProtectionProxy::QueryStatus(const QueryStatusCallback& callback) {
- DVLOG(1) << __FUNCTION__;
+ DVLOG(1) << __func__;
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
#if defined(OS_CHROMEOS)
@@ -42,7 +42,7 @@ void OutputProtectionProxy::QueryStatus(const QueryStatusCallback& callback) {
void OutputProtectionProxy::EnableProtection(
uint32_t desired_method_mask,
const EnableProtectionCallback& callback) {
- DVLOG(1) << __FUNCTION__;
+ DVLOG(1) << __func__;
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
#if defined(OS_CHROMEOS)
@@ -58,7 +58,7 @@ void OutputProtectionProxy::ProcessQueryStatusResult(
bool success,
uint32_t link_mask,
uint32_t protection_mask) {
- DVLOG(1) << __FUNCTION__ << ": " << success << ", " << link_mask;
+ DVLOG(1) << __func__ << ": " << success << ", " << link_mask;
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
content::RenderFrameHost* rfh =
« no previous file with comments | « chrome/browser/media/output_protection_impl.cc ('k') | chrome/browser/media/protected_media_identifier_permission_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698