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

Unified Diff: third_party/WebKit/Source/core/loader/TextTrackLoader.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/loader/TextTrackLoader.cpp
diff --git a/third_party/WebKit/Source/core/loader/TextTrackLoader.cpp b/third_party/WebKit/Source/core/loader/TextTrackLoader.cpp
index db966bad7c14a2e89548c62e3560445651409b82..4e30cd6fb0fa4ac34c0854bd29a07d19f3ecf0b5 100644
--- a/third_party/WebKit/Source/core/loader/TextTrackLoader.cpp
+++ b/third_party/WebKit/Source/core/loader/TextTrackLoader.cpp
@@ -138,7 +138,7 @@ void TextTrackLoader::newRegionsParsed()
void TextTrackLoader::fileFailedToParse()
{
- WTF_LOG(Media, "TextTrackLoader::fileFailedToParse");
+ DVLOG(3) << "fileFailedToParse";
fs 2016/05/19 11:05:36 Just drop this log-statement.
Srirama 2016/05/19 12:14:54 Done.
m_state = Failed;

Powered by Google App Engine
This is Rietveld 408576698