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

Unified Diff: Source/platform/audio/FFTFrame.cpp

Issue 536843002: Change members's order and combine duplicated method for FFTFrame. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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: Source/platform/audio/FFTFrame.cpp
diff --git a/Source/platform/audio/FFTFrame.cpp b/Source/platform/audio/FFTFrame.cpp
index e65ef0e4f38d07e0aa47fb9364713fa77ac2d79a..56fd26905242483c6f4916269b05683cb150c3f9 100644
--- a/Source/platform/audio/FFTFrame.cpp
+++ b/Source/platform/audio/FFTFrame.cpp
@@ -33,16 +33,15 @@
#include "platform/audio/FFTFrame.h"
#include "platform/audio/VectorMath.h"
-
-#ifndef NDEBUG
-#include <stdio.h>
-#endif
-
#include "platform/Logging.h"
#include "wtf/Complex.h"
#include "wtf/MathExtras.h"
#include "wtf/OwnPtr.h"
+#ifndef NDEBUG
+#include <stdio.h>
+#endif
+
namespace blink {
void FFTFrame::doPaddedFFT(const float* data, size_t dataSize)

Powered by Google App Engine
This is Rietveld 408576698