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

Unified Diff: third_party/WebKit/Source/platform/geometry/FloatPolygon.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/platform/geometry/FloatPolygon.cpp
diff --git a/third_party/WebKit/Source/platform/geometry/FloatPolygon.cpp b/third_party/WebKit/Source/platform/geometry/FloatPolygon.cpp
index 1d5c2febf8f06d6b563ae2a2cf1b6ac09b9c98b5..5f3b00b931afc50dccca09cfa635fbd564f6a583 100644
--- a/third_party/WebKit/Source/platform/geometry/FloatPolygon.cpp
+++ b/third_party/WebKit/Source/platform/geometry/FloatPolygon.cpp
@@ -70,8 +70,9 @@ static unsigned findNextEdgeVertexIndex(const FloatPolygon& polygon,
unsigned nVertices = polygon.numberOfVertices();
unsigned vertexIndex2 = nextVertexIndex(vertexIndex1, nVertices, clockwise);
- while (vertexIndex2 && areCoincidentPoints(polygon.vertexAt(vertexIndex1),
- polygon.vertexAt(vertexIndex2)))
+ while (vertexIndex2 &&
+ areCoincidentPoints(polygon.vertexAt(vertexIndex1),
+ polygon.vertexAt(vertexIndex2)))
vertexIndex2 = nextVertexIndex(vertexIndex2, nVertices, clockwise);
while (vertexIndex2) {

Powered by Google App Engine
This is Rietveld 408576698