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

Unified Diff: third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h

Issue 2389253002: reflow comments in modules/{webaudio,vr} (Closed)
Patch Set: . Created 4 years, 2 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/modules/webaudio/RealtimeAnalyser.h
diff --git a/third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h b/third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h
index 3df254b10f8cdf37c662a4bb63245625e8fed67d..6754331b2bf4ef0daa4d067b17d158d086ce8309 100644
--- a/third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h
+++ b/third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h
@@ -86,7 +86,8 @@ class RealtimeAnalyser final {
std::unique_ptr<FFTFrame> m_analysisFrame;
void doFFTAnalysis();
- // Convert the contents of magnitudeBuffer to byte values, saving the result in |destination|.
+ // Convert the contents of magnitudeBuffer to byte values, saving the result
+ // in |destination|.
void convertToByteData(DOMUint8Array* destination);
// Convert magnidue buffer to dB, saving the result in |destination|
@@ -96,7 +97,8 @@ class RealtimeAnalyser final {
AudioFloatArray m_magnitudeBuffer;
AudioFloatArray& magnitudeBuffer() { return m_magnitudeBuffer; }
- // A value between 0 and 1 which averages the previous version of m_magnitudeBuffer with the current analysis magnitude data.
+ // A value between 0 and 1 which averages the previous version of
+ // m_magnitudeBuffer with the current analysis magnitude data.
double m_smoothingTimeConstant;
// The range used when converting when using getByteFrequencyData().

Powered by Google App Engine
This is Rietveld 408576698