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

Unified Diff: third_party/WebKit/Source/modules/mediasource/SourceBufferList.cpp

Issue 2002073002: 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: Rebase and fix test failures 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/modules/mediasource/SourceBufferList.cpp
diff --git a/third_party/WebKit/Source/modules/mediasource/SourceBufferList.cpp b/third_party/WebKit/Source/modules/mediasource/SourceBufferList.cpp
index 49e739f942da54dfa8269fd0318cd66720552c6e..23f2f23eefaa4ac95a3df16e556b1dcb7dd20aa4 100644
--- a/third_party/WebKit/Source/modules/mediasource/SourceBufferList.cpp
+++ b/third_party/WebKit/Source/modules/mediasource/SourceBufferList.cpp
@@ -76,7 +76,7 @@ void SourceBufferList::clear()
void SourceBufferList::scheduleEvent(const AtomicString& eventName)
{
- ASSERT(m_asyncEventQueue);
+ DCHECK(m_asyncEventQueue);
Event* event = Event::create(eventName);
event->setTarget(this);

Powered by Google App Engine
This is Rietveld 408576698