Index: third_party/WebKit/Source/modules/peerconnection/RTCDTMFSender.cpp |
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCDTMFSender.cpp b/third_party/WebKit/Source/modules/peerconnection/RTCDTMFSender.cpp |
index bfd79e47d4bd4e25b958406c8da9f65d9df86d6b..86eb7c904de06cd95540a29625300b553fb00265 100644 |
--- a/third_party/WebKit/Source/modules/peerconnection/RTCDTMFSender.cpp |
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCDTMFSender.cpp |
@@ -126,17 +126,19 @@ void RTCDTMFSender::insertDTMF(const String& tones, |
if (duration > maxToneDurationMs || duration < minToneDurationMs) { |
exceptionState.throwDOMException( |
- SyntaxError, ExceptionMessages::indexOutsideRange( |
- "duration", duration, minToneDurationMs, |
- ExceptionMessages::ExclusiveBound, maxToneDurationMs, |
- ExceptionMessages::ExclusiveBound)); |
+ SyntaxError, |
+ ExceptionMessages::indexOutsideRange( |
+ "duration", duration, minToneDurationMs, |
+ ExceptionMessages::ExclusiveBound, maxToneDurationMs, |
+ ExceptionMessages::ExclusiveBound)); |
return; |
} |
if (interToneGap < minInterToneGapMs) { |
exceptionState.throwDOMException( |
- SyntaxError, ExceptionMessages::indexExceedsMinimumBound( |
- "intertone gap", interToneGap, minInterToneGapMs)); |
+ SyntaxError, |
+ ExceptionMessages::indexExceedsMinimumBound( |
+ "intertone gap", interToneGap, minInterToneGapMs)); |
return; |
} |