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

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

Issue 2604683002: Remove ASSERT_NOT_REACHED() in audio. (Closed)
Patch Set: fixed. Created 3 years, 11 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/FFTFrameStub.cpp
diff --git a/third_party/WebKit/Source/platform/audio/FFTFrameStub.cpp b/third_party/WebKit/Source/platform/audio/FFTFrameStub.cpp
index 2a07c08db73eb2c90a1804c67f661dc4b21a2287..3ee6331c6e8539149c34496b153e07aac87bf477 100644
--- a/third_party/WebKit/Source/platform/audio/FFTFrameStub.cpp
+++ b/third_party/WebKit/Source/platform/audio/FFTFrameStub.cpp
@@ -35,36 +35,36 @@ namespace blink {
// Normal constructor: allocates for a given fftSize.
FFTFrame::FFTFrame(unsigned /*fftSize*/) : m_FFTSize(0), m_log2FFTSize(0) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
// Creates a blank/empty frame (interpolate() must later be called).
FFTFrame::FFTFrame() : m_FFTSize(0), m_log2FFTSize(0) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
// Copy constructor.
FFTFrame::FFTFrame(const FFTFrame& frame)
: m_FFTSize(frame.m_FFTSize), m_log2FFTSize(frame.m_log2FFTSize) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
FFTFrame::~FFTFrame() {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
void FFTFrame::doFFT(const float* data) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
void FFTFrame::doInverseFFT(float* data) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
void FFTFrame::initialize() {}
void FFTFrame::cleanup() {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/platform/audio/DynamicsCompressor.cpp ('k') | third_party/WebKit/Source/platform/audio/Panner.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698