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

Unified Diff: third_party/WebKit/Source/modules/webaudio/MediaStreamAudioSourceNode.cpp

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/MediaStreamAudioSourceNode.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/MediaStreamAudioSourceNode.cpp b/third_party/WebKit/Source/modules/webaudio/MediaStreamAudioSourceNode.cpp
index 998eeaa2f9228e1e7ac1c2751d6f7f90fde65fe5..988f54479fd6fc30ca05cbb5c6e4faec252bb551 100644
--- a/third_party/WebKit/Source/modules/webaudio/MediaStreamAudioSourceNode.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/MediaStreamAudioSourceNode.cpp
@@ -110,8 +110,8 @@ void MediaStreamAudioSourceHandler::process(size_t numberOfFrames) {
}
// Use a tryLock() to avoid contention in the real-time audio thread.
- // If we fail to acquire the lock then the MediaStream must be in the middle of
- // a format change, so we output silence in this case.
+ // If we fail to acquire the lock then the MediaStream must be in the middle
+ // of a format change, so we output silence in this case.
MutexTryLocker tryLocker(m_processLock);
if (tryLocker.locked()) {
getAudioSourceProvider()->provideInput(outputBus, numberOfFrames);

Powered by Google App Engine
This is Rietveld 408576698