Chromium Code Reviews| 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() |