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

Unified Diff: third_party/WebKit/Source/core/editing/state_machines/StateMachineUtil.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/editing/state_machines/StateMachineUtil.cpp
diff --git a/third_party/WebKit/Source/core/editing/state_machines/StateMachineUtil.cpp b/third_party/WebKit/Source/core/editing/state_machines/StateMachineUtil.cpp
index 5b5e954eb7963f1b0a6e2788047bc3c4c60a8942..5209755444c05235c6c4c28e744a260392a94675 100644
--- a/third_party/WebKit/Source/core/editing/state_machines/StateMachineUtil.cpp
+++ b/third_party/WebKit/Source/core/editing/state_machines/StateMachineUtil.cpp
@@ -70,8 +70,9 @@ bool isGraphemeBreak(UChar32 prevCodePoint, UChar32 nextCodePoint) {
return true;
// Rule GB6, L x (L | V | LV | LVT)
- if (prevProp == U_GCB_L && (nextProp == U_GCB_L || nextProp == U_GCB_V ||
- nextProp == U_GCB_LV || nextProp == U_GCB_LVT))
+ if (prevProp == U_GCB_L &&
+ (nextProp == U_GCB_L || nextProp == U_GCB_V || nextProp == U_GCB_LV ||
+ nextProp == U_GCB_LVT))
return false;
// Rule GB7, (LV | V) x (V | T)

Powered by Google App Engine
This is Rietveld 408576698