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

Unified Diff: third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h

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/svg/properties/SVGListPropertyHelper.h
diff --git a/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h b/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h
index 2bea7c4b672cbfd6dce0881322928401fbbf0be6..89c1d7990c1c0f6d83561dd7a43c7aae4bce9ec9 100644
--- a/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h
+++ b/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h
@@ -229,8 +229,9 @@ ItemProperty* SVGListPropertyHelper<Derived, ItemProperty>::removeItem(
ExceptionState& exceptionState) {
if (index >= m_values.size()) {
exceptionState.throwDOMException(
- IndexSizeError, ExceptionMessages::indexExceedsMaximumBound(
- "index", index, m_values.size()));
+ IndexSizeError,
+ ExceptionMessages::indexExceedsMaximumBound("index", index,
+ m_values.size()));
return nullptr;
}
ASSERT(m_values.at(index)->ownerList() == this);
@@ -283,8 +284,9 @@ bool SVGListPropertyHelper<Derived, ItemProperty>::checkIndexBound(
ExceptionState& exceptionState) {
if (index >= m_values.size()) {
exceptionState.throwDOMException(
- IndexSizeError, ExceptionMessages::indexExceedsMaximumBound(
- "index", index, m_values.size()));
+ IndexSizeError,
+ ExceptionMessages::indexExceedsMaximumBound("index", index,
+ m_values.size()));
return false;
}

Powered by Google App Engine
This is Rietveld 408576698