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

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

Issue 13643002: Rename LOG() to LOG_INFO() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase Created 7 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
« no previous file with comments | « Source/WebCore/loader/icon/IconRecord.cpp ('k') | Source/WebCore/platform/graphics/MediaPlayer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/platform/audio/FFTFrame.cpp
diff --git a/Source/WebCore/platform/audio/FFTFrame.cpp b/Source/WebCore/platform/audio/FFTFrame.cpp
index 281595851c7c7b5a7c2b5db4490f5d8414325ecc..0ae08c5b68f8c1727d69b0a9fd969461b94adeb8 100644
--- a/Source/WebCore/platform/audio/FFTFrame.cpp
+++ b/Source/WebCore/platform/audio/FFTFrame.cpp
@@ -309,8 +309,8 @@ void FFTFrame::print()
FFTFrame& frame = *this;
float* realP = frame.realData();
float* imagP = frame.imagData();
- LOG(WebAudio, "**** \n");
- LOG(WebAudio, "DC = %f : nyquist = %f\n", realP[0], imagP[0]);
+ LOG_INFO(WebAudio, "**** \n");
+ LOG_INFO(WebAudio, "DC = %f : nyquist = %f\n", realP[0], imagP[0]);
int n = m_FFTSize / 2;
@@ -318,9 +318,9 @@ void FFTFrame::print()
double mag = sqrt(realP[i] * realP[i] + imagP[i] * imagP[i]);
double phase = atan2(realP[i], imagP[i]);
- LOG(WebAudio, "[%d] (%f %f)\n", i, mag, phase);
+ LOG_INFO(WebAudio, "[%d] (%f %f)\n", i, mag, phase);
}
- LOG(WebAudio, "****\n");
+ LOG_INFO(WebAudio, "****\n");
}
#endif // NDEBUG
« no previous file with comments | « Source/WebCore/loader/icon/IconRecord.cpp ('k') | Source/WebCore/platform/graphics/MediaPlayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698