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

Unified Diff: third_party/WebKit/Source/core/style/GridLength.h

Issue 2392143002: reflow comments in core/style (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/core/style/GridLength.h
diff --git a/third_party/WebKit/Source/core/style/GridLength.h b/third_party/WebKit/Source/core/style/GridLength.h
index 3257c8600f46a27833516733b5c2f882fd486150..67f4f6808c4f1c379fb3f7ddcf60cd03b199565f 100644
--- a/third_party/WebKit/Source/core/style/GridLength.h
+++ b/third_party/WebKit/Source/core/style/GridLength.h
@@ -36,9 +36,10 @@
namespace blink {
-// This class wraps the <track-breadth> which can be either a <percentage>, <length>, min-content, max-content
-// or <flex>. This class avoids spreading the knowledge of <flex> throughout the layout directory by adding
-// an new unit to Length.h.
+// This class wraps the <track-breadth> which can be either a <percentage>,
+// <length>, min-content, max-content or <flex>. This class avoids spreading the
+// knowledge of <flex> throughout the layout directory by adding an new unit to
+// Length.h.
class GridLength {
DISALLOW_NEW();
@@ -76,8 +77,8 @@ class GridLength {
}
private:
- // Ideally we would put the 2 following fields in a union, but Length has a constructor,
- // a destructor and a copy assignment which isn't allowed.
+ // Ideally we would put the 2 following fields in a union, but Length has a
+ // constructor, a destructor and a copy assignment which isn't allowed.
Length m_length;
double m_flex;
enum GridLengthType { LengthType, FlexType };
« no previous file with comments | « third_party/WebKit/Source/core/style/FilterOperation.cpp ('k') | third_party/WebKit/Source/core/style/GridPosition.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698