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

Unified Diff: media/test/pipeline_integration_test_base.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
« no previous file with comments | « media/remoting/rpc/rpc_broker.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/test/pipeline_integration_test_base.cc
diff --git a/media/test/pipeline_integration_test_base.cc b/media/test/pipeline_integration_test_base.cc
index fe89e18de83894853760a1e50df310169869aaa1..422caa31f30c874e92b0f45e2056667b1b2673ef 100644
--- a/media/test/pipeline_integration_test_base.cc
+++ b/media/test/pipeline_integration_test_base.cc
@@ -392,7 +392,7 @@ void PipelineIntegrationTestBase::OnVideoFramePaint(
if (!hashing_enabled_ || last_frame_ == frame)
return;
last_frame_ = frame;
- DVLOG(3) << __FUNCTION__ << " pts=" << frame->timestamp().InSecondsF();
+ DVLOG(3) << __func__ << " pts=" << frame->timestamp().InSecondsF();
VideoFrame::HashFrameForTesting(&md5_context_, frame);
}
@@ -409,7 +409,7 @@ base::TimeDelta PipelineIntegrationTestBase::GetStartTime() {
}
void PipelineIntegrationTestBase::ResetVideoHash() {
- DVLOG(1) << __FUNCTION__;
+ DVLOG(1) << __func__;
base::MD5Init(&md5_context_);
}
« no previous file with comments | « media/remoting/rpc/rpc_broker.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698