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

Unified Diff: third_party/WebKit/Source/modules/mediasession/MediaSession.cpp

Issue 2058783002: 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, 6 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/mediasession/MediaSessionError.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/mediasession/MediaSession.cpp
diff --git a/third_party/WebKit/Source/modules/mediasession/MediaSession.cpp b/third_party/WebKit/Source/modules/mediasession/MediaSession.cpp
index dec7b3c455484286115e1487cf609eca5b652e9d..32cdf21f2c634d25ce59616127a12fa10fbb067a 100644
--- a/third_party/WebKit/Source/modules/mediasession/MediaSession.cpp
+++ b/third_party/WebKit/Source/modules/mediasession/MediaSession.cpp
@@ -20,7 +20,7 @@ namespace blink {
MediaSession::MediaSession(PassOwnPtr<WebMediaSession> webMediaSession)
: m_webMediaSession(std::move(webMediaSession))
{
- ASSERT(m_webMediaSession);
+ DCHECK(m_webMediaSession);
}
MediaSession* MediaSession::create(ExecutionContext* context, ExceptionState& exceptionState)
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/mediasession/MediaSessionError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698