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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTableSectionElement.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/core/html/HTMLTableSectionElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLTableSectionElement.cpp b/third_party/WebKit/Source/core/html/HTMLTableSectionElement.cpp
index 3cc7c9fcdce94fb21859151549dab49a38cac80b..44b32325a84512f9bcc76e25f1d9c288f650ab36 100644
--- a/third_party/WebKit/Source/core/html/HTMLTableSectionElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLTableSectionElement.cpp
@@ -60,9 +60,9 @@ HTMLElement* HTMLTableSectionElement::insertRow(
int numRows = children ? static_cast<int>(children->length()) : 0;
if (index < -1 || index > numRows) {
exceptionState.throwDOMException(
- IndexSizeError, "The provided index (" + String::number(index) +
- " is outside the range [-1, " +
- String::number(numRows) + "].");
+ IndexSizeError,
+ "The provided index (" + String::number(index) +
+ " is outside the range [-1, " + String::number(numRows) + "].");
return nullptr;
}
@@ -88,9 +88,9 @@ void HTMLTableSectionElement::deleteRow(int index,
HTMLElement::removeChild(row, exceptionState);
} else {
exceptionState.throwDOMException(
- IndexSizeError, "The provided index (" + String::number(index) +
- " is outside the range [-1, " +
- String::number(numRows) + "].");
+ IndexSizeError,
+ "The provided index (" + String::number(index) +
+ " is outside the range [-1, " + String::number(numRows) + "].");
}
}

Powered by Google App Engine
This is Rietveld 408576698