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

Unified Diff: third_party/WebKit/Source/core/html/track/vtt/BufferedLineReader.cpp

Issue 2003543002: media/track: 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: address comments 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/track/vtt/BufferedLineReader.cpp
diff --git a/third_party/WebKit/Source/core/html/track/vtt/BufferedLineReader.cpp b/third_party/WebKit/Source/core/html/track/vtt/BufferedLineReader.cpp
index 4b84e4335ed5034e26748621fd833b7f7d7f3e13..5a5b7af81caf7091b6bac84e01ae1d93c84e9af5 100644
--- a/third_party/WebKit/Source/core/html/track/vtt/BufferedLineReader.cpp
+++ b/third_party/WebKit/Source/core/html/track/vtt/BufferedLineReader.cpp
@@ -96,7 +96,7 @@ bool BufferedLineReader::getLine(String& line)
return true;
}
- ASSERT(m_buffer.isEmpty());
+ DCHECK(m_buffer.isEmpty());
return false;
}

Powered by Google App Engine
This is Rietveld 408576698