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

Unified Diff: third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.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/webdatabase/SQLResultSetRowList.cpp
diff --git a/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp b/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
index a54de38ee4df0d414d6144ebe92c23c4ca407c10..4307504e4807af7464039a06700f8717184465e6 100644
--- a/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
+++ b/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
@@ -49,8 +49,9 @@ ScriptValue SQLResultSetRowList::item(ScriptState* scriptState,
ExceptionState& exceptionState) {
if (index >= length()) {
exceptionState.throwDOMException(
- IndexSizeError, ExceptionMessages::indexExceedsMaximumBound<unsigned>(
- "index", index, length()));
+ IndexSizeError,
+ ExceptionMessages::indexExceedsMaximumBound<unsigned>("index", index,
+ length()));
return ScriptValue();
}

Powered by Google App Engine
This is Rietveld 408576698