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

Unified Diff: third_party/WebKit/Source/modules/encryptedmedia/EncryptedMediaUtils.cpp

Issue 2001173002: encryptedmedia: 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/modules/encryptedmedia/EncryptedMediaUtils.cpp
diff --git a/third_party/WebKit/Source/modules/encryptedmedia/EncryptedMediaUtils.cpp b/third_party/WebKit/Source/modules/encryptedmedia/EncryptedMediaUtils.cpp
index 6a2a46d7a0c590b49ad49a940b7aa59705b34b72..f87963c2a9aaf799a46f35dcad5e6e4270eb68d6 100644
--- a/third_party/WebKit/Source/modules/encryptedmedia/EncryptedMediaUtils.cpp
+++ b/third_party/WebKit/Source/modules/encryptedmedia/EncryptedMediaUtils.cpp
@@ -41,7 +41,7 @@ String EncryptedMediaUtils::convertFromInitDataType(WebEncryptedMediaInitDataTyp
return String();
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return String();
}
@@ -67,11 +67,11 @@ String EncryptedMediaUtils::convertFromSessionType(WebEncryptedMediaSessionType
case WebEncryptedMediaSessionType::PersistentReleaseMessage:
case WebEncryptedMediaSessionType::Unknown:
// Chromium should not use Unknown.
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return String();
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return String();
}

Powered by Google App Engine
This is Rietveld 408576698