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

Unified Diff: third_party/WebKit/Source/core/testing/InternalSettings.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/testing/InternalSettings.cpp
diff --git a/third_party/WebKit/Source/core/testing/InternalSettings.cpp b/third_party/WebKit/Source/core/testing/InternalSettings.cpp
index dc12dca40f28d2886bc75283822df5333c7fd8cb..db1c8d3b86c5fa8a19c2246e1067f22c07b1e7e8 100644
--- a/third_party/WebKit/Source/core/testing/InternalSettings.cpp
+++ b/third_party/WebKit/Source/core/testing/InternalSettings.cpp
@@ -316,8 +316,9 @@ void InternalSettings::setTextTrackKindUserPreference(
userPreference = TextTrackKindUserPreference::Subtitles;
else
exceptionState.throwDOMException(
- SyntaxError, "The user preference for text track kind " + preference +
- ")' is invalid.");
+ SyntaxError,
+ "The user preference for text track kind " + preference +
+ ")' is invalid.");
settings()->setTextTrackKindUserPreference(userPreference);
}
@@ -347,9 +348,9 @@ void InternalSettings::setEditingBehavior(const String& editingBehavior,
else if (equalIgnoringCase(editingBehavior, "android"))
settings()->setEditingBehaviorType(EditingAndroidBehavior);
else
- exceptionState.throwDOMException(
- SyntaxError, "The editing behavior type provided ('" + editingBehavior +
- "') is invalid.");
+ exceptionState.throwDOMException(SyntaxError,
+ "The editing behavior type provided ('" +
+ editingBehavior + "') is invalid.");
}
void InternalSettings::setLangAttributeAwareFormControlUIEnabled(bool enabled) {

Powered by Google App Engine
This is Rietveld 408576698