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

Unified Diff: third_party/WebKit/Source/core/svg/SVGStringList.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/svg/SVGStringList.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGStringList.cpp b/third_party/WebKit/Source/core/svg/SVGStringList.cpp
index be9c878d8bdb5866890c98f610736c27711fe4fe..a73ba09fa74435be6fbaae3126a4d20aa7a1759e 100644
--- a/third_party/WebKit/Source/core/svg/SVGStringList.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGStringList.cpp
@@ -137,8 +137,9 @@ bool SVGStringList::checkIndexBound(size_t index,
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