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

Unified Diff: third_party/WebKit/Source/modules/peerconnection/RTCIceCandidate.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/RTCIceCandidate.cpp
diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidate.cpp b/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidate.cpp
index 2cd4b70cbf3410ba7583ce2d1692c6f0cd111c44..e3ff2019f5f89b48eafcab3d7b477faffcc3e1a8 100644
--- a/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidate.cpp
+++ b/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidate.cpp
@@ -47,8 +47,9 @@ RTCIceCandidate* RTCIceCandidate::create(
ExceptionState& exceptionState) {
if (!candidateInit.hasCandidate() || !candidateInit.candidate().length()) {
exceptionState.throwDOMException(
- TypeMismatchError, ExceptionMessages::incorrectPropertyType(
- "candidate", "is not a string, or is empty."));
+ TypeMismatchError,
+ ExceptionMessages::incorrectPropertyType(
+ "candidate", "is not a string, or is empty."));
return nullptr;
}

Powered by Google App Engine
This is Rietveld 408576698