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

Unified Diff: third_party/WebKit/Source/core/html/AutoplayExperimentHelper.cpp

Issue 1998553002: media: Replace wtf/Assertions.h macros in favor of base/logging.h macros (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: third_party/WebKit/Source/core/html/AutoplayExperimentHelper.cpp
diff --git a/third_party/WebKit/Source/core/html/AutoplayExperimentHelper.cpp b/third_party/WebKit/Source/core/html/AutoplayExperimentHelper.cpp
index 74e3636d0e6934230447950cf1f0a813e84e9d4d..abee58a973f52ca886e8af0dfad55194df6d5b2c 100644
--- a/third_party/WebKit/Source/core/html/AutoplayExperimentHelper.cpp
+++ b/third_party/WebKit/Source/core/html/AutoplayExperimentHelper.cpp
@@ -39,10 +39,8 @@ AutoplayExperimentHelper::AutoplayExperimentHelper(Client* client)
{
m_mode = fromString(this->client().autoplayExperimentMode());
- if (m_mode != Mode::ExperimentOff) {
- WTF_LOG(Media, "HTMLMediaElement: autoplay experiment set to %d",
- m_mode);
- }
+ if (m_mode != Mode::ExperimentOff)
+ DVLOG(3) << "autoplay experiment set to " << m_mode;
fs 2016/05/19 11:05:36 DVLOG_IF(3, m_mode != Mode::ExperimentOff) << ...
Srirama 2016/05/19 12:14:53 Done.
}
AutoplayExperimentHelper::~AutoplayExperimentHelper()

Powered by Google App Engine
This is Rietveld 408576698