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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCDTMFSender.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/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;
}

Powered by Google App Engine
This is Rietveld 408576698