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

Unified Diff: third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp

Issue 2811463002: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in platform/exported (Closed)
Patch Set: rebase Created 3 years, 8 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/platform/exported/WebContentDecryptionModuleResult.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp b/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp
index f4fa944e9305cd78c95d759288a1d1b89dae7957..0e1dfaa9052cf7716c16aae00f8e7ecfa4851805 100644
--- a/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebContentDecryptionModuleResult.cpp
@@ -36,7 +36,7 @@ void WebContentDecryptionModuleResult::CompleteWithError(
WebContentDecryptionModuleResult::WebContentDecryptionModuleResult(
ContentDecryptionModuleResult* impl)
: impl_(impl) {
- ASSERT(impl_.Get());
+ DCHECK(impl_.Get());
}
void WebContentDecryptionModuleResult::Reset() {

Powered by Google App Engine
This is Rietveld 408576698