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

Unified Diff: third_party/WebKit/Source/modules/webaudio/PeriodicWave.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/PeriodicWave.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/PeriodicWave.cpp b/third_party/WebKit/Source/modules/webaudio/PeriodicWave.cpp
index 039578c7f18cb3748c89e329ffcf79f45afa454c..7d1f2f2ac60a468d58d67a97c517afe663edeac8 100644
--- a/third_party/WebKit/Source/modules/webaudio/PeriodicWave.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/PeriodicWave.cpp
@@ -69,9 +69,10 @@ PeriodicWave* PeriodicWave::create(BaseAudioContext& context,
if (realLength != imagLength) {
exceptionState.throwDOMException(
- IndexSizeError, "length of real array (" + String::number(realLength) +
- ") and length of imaginary array (" +
- String::number(imagLength) + ") must match.");
+ IndexSizeError,
+ "length of real array (" + String::number(realLength) +
+ ") and length of imaginary array (" + String::number(imagLength) +
+ ") must match.");
return nullptr;
}

Powered by Google App Engine
This is Rietveld 408576698