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; |
} |