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

Unified Diff: third_party/WebKit/Source/platform/geometry/FloatPolygon.h

Issue 2392543003: reflow comments in platform/geometry (Closed)
Patch Set: Created 4 years, 2 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.h
diff --git a/third_party/WebKit/Source/platform/geometry/FloatPolygon.h b/third_party/WebKit/Source/platform/geometry/FloatPolygon.h
index bb8b20eb79825e5008c07a86c7bdb48d6603b271..34f3f965eeadfd3b04dcde8c8c62f270ade85e14 100644
--- a/third_party/WebKit/Source/platform/geometry/FloatPolygon.h
+++ b/third_party/WebKit/Source/platform/geometry/FloatPolygon.h
@@ -86,8 +86,9 @@ class PLATFORM_EXPORT FloatPolygon {
FloatRect m_boundingBox;
bool m_empty;
Vector<FloatPolygonEdge> m_edges;
- EdgeIntervalTree
- m_edgeTree; // Each EdgeIntervalTree node stores minY, maxY, and a ("UserData") pointer to a FloatPolygonEdge.
+ EdgeIntervalTree m_edgeTree; // Each EdgeIntervalTree node stores minY, maxY,
+ // and a ("UserData") pointer to a
+ // FloatPolygonEdge.
};
class PLATFORM_EXPORT VertexPair {
@@ -137,8 +138,9 @@ class PLATFORM_EXPORT FloatPolygonEdge final : public VertexPair {
unsigned edgeIndex() const { return m_edgeIndex; }
private:
- // Edge vertex index1 is less than index2, except the last edge, where index2 is 0. When a polygon edge
- // is defined by 3 or more colinear vertices, index2 can be the the index of the last colinear vertex.
+ // Edge vertex index1 is less than index2, except the last edge, where index2
+ // is 0. When a polygon edge is defined by 3 or more colinear vertices, index2
+ // can be the the index of the last colinear vertex.
unsigned m_vertexIndex1;
unsigned m_vertexIndex2;
unsigned m_edgeIndex;

Powered by Google App Engine
This is Rietveld 408576698