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

Unified Diff: third_party/WebKit/Source/platform/audio/DirectConvolver.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/DirectConvolver.cpp
diff --git a/third_party/WebKit/Source/platform/audio/DirectConvolver.cpp b/third_party/WebKit/Source/platform/audio/DirectConvolver.cpp
index 5632095248bb9d241096880e6afd62878bd15ca4..1cf4ce58d6cdd297ae5419809e584bea4a0c0bf6 100644
--- a/third_party/WebKit/Source/platform/audio/DirectConvolver.cpp
+++ b/third_party/WebKit/Source/platform/audio/DirectConvolver.cpp
@@ -64,7 +64,7 @@ void DirectConvolver::process(AudioFloatArray* convolutionKernel,
// Sanity check
bool isCopyGood = kernelP && sourceP && destP && m_buffer.data();
- ASSERT(isCopyGood);
+ DCHECK(isCopyGood);
if (!isCopyGood)
return;

Powered by Google App Engine
This is Rietveld 408576698