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

Unified Diff: third_party/WebKit/Source/platform/audio/Reverb.cpp

Issue 2803733002: Convert ASSERT(foo) to DCHECK(foo) in platform/audio (Closed)
Patch Set: Mechanical change from ASSERT(foo) to DCHECK(foo) 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/audio/Reverb.cpp
diff --git a/third_party/WebKit/Source/platform/audio/Reverb.cpp b/third_party/WebKit/Source/platform/audio/Reverb.cpp
index 1a2ed972c4ebe544d1079cdc33f1f049c8a3a7a7..552757885b1660c2f6fa564016a21c0787466501 100644
--- a/third_party/WebKit/Source/platform/audio/Reverb.cpp
+++ b/third_party/WebKit/Source/platform/audio/Reverb.cpp
@@ -158,7 +158,7 @@ void Reverb::process(const AudioBus* sourceBus,
framesToProcess <= sourceBus->length() &&
framesToProcess <= destinationBus->length();
- ASSERT(isSafeToProcess);
+ DCHECK(isSafeToProcess);
if (!isSafeToProcess)
return;

Powered by Google App Engine
This is Rietveld 408576698