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

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

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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/AudioScheduledSourceNode.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioScheduledSourceNode.cpp b/third_party/WebKit/Source/modules/webaudio/AudioScheduledSourceNode.cpp
index 28784bd9affa9cca4f96de31f38f0e06d84b9a50..0700a483474e40d4dcb473c45a54570ec4155ffa 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioScheduledSourceNode.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/AudioScheduledSourceNode.cpp
@@ -72,8 +72,9 @@ void AudioScheduledSourceHandler::updateSchedulingInfo(
size_t startFrame =
AudioUtilities::timeToSampleFrame(m_startTime, sampleRate);
size_t endFrame =
- m_endTime == UnknownTime ? 0 : AudioUtilities::timeToSampleFrame(
- m_endTime, sampleRate);
+ m_endTime == UnknownTime
+ ? 0
+ : AudioUtilities::timeToSampleFrame(m_endTime, sampleRate);
// If we know the end time and it's already passed, then don't bother doing
// any more rendering this cycle.

Powered by Google App Engine
This is Rietveld 408576698