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

Unified Diff: third_party/WebKit/Source/core/html/track/TrackEvent.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/TrackEvent.cpp
diff --git a/third_party/WebKit/Source/core/html/track/TrackEvent.cpp b/third_party/WebKit/Source/core/html/track/TrackEvent.cpp
index dbf62b0e09494a95637383c70e23ee67509fa764..2b09e61c941d8849bb3b80e287a2a0b4d4348de3 100644
--- a/third_party/WebKit/Source/core/html/track/TrackEvent.cpp
+++ b/third_party/WebKit/Source/core/html/track/TrackEvent.cpp
@@ -51,7 +51,7 @@ TrackEvent::TrackEvent(const AtomicString& type, const TrackEventInit& initializ
else if (track.isTextTrack())
m_track = track.getAsTextTrack();
else
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
TrackEvent::~TrackEvent()
@@ -79,7 +79,7 @@ void TrackEvent::track(VideoTrackOrAudioTrackOrTextTrack& returnValue)
returnValue.setVideoTrack(toVideoTrack(m_track.get()));
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
}
« no previous file with comments | « third_party/WebKit/Source/core/html/track/TextTrackList.cpp ('k') | third_party/WebKit/Source/core/html/track/TrackListBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698