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

Unified Diff: third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h

Issue 2392343005: Reflow comments in core/css (Closed)
Patch Set: Revert clang-format 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/css/CSSGridAutoRepeatValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h b/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
index 8bb393e85c55e59e26f819d926dc5041ffa11027..d2cf256fe4734a03c42380aad2df8845bb6fb6c5 100644
--- a/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
+++ b/third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.h
@@ -10,17 +10,19 @@
namespace blink {
-// CSSGridAutoRepeatValue stores the track sizes and line numbers when the auto-repeat
-// syntax is used
+// CSSGridAutoRepeatValue stores the track sizes and line numbers when the
+// auto-repeat syntax is used
//
// Right now the auto-repeat syntax is as follows:
-// <auto-repeat> = repeat( [ auto-fill | auto-fit ], <line-names>? <fixed-size> <line-names>? )
+// <auto-repeat> = repeat( [ auto-fill | auto-fit ], <line-names>? <fixed-size>
+// <line-names>? )
//
-// meaning that only one fixed size track is allowed. It could be argued that a different
-// class storing two CSSGridLineNamesValue and one CSSValue (for the track size) fits
-// better but the CSSWG has left the door open to allow more than one track in the
-// future. That's why we're using a list, it's prepared for future changes and it also
-// allows us to keep the parsing algorithm almost intact.
+// meaning that only one fixed size track is allowed. It could be argued that a
+// different class storing two CSSGridLineNamesValue and one CSSValue (for the
+// track size) fits better but the CSSWG has left the door open to allow more
+// than one track in the future. That's why we're using a list, it's prepared
+// for future changes and it also allows us to keep the parsing algorithm almost
+// intact.
class CSSGridAutoRepeatValue : public CSSValueList {
public:
static CSSGridAutoRepeatValue* create(CSSValueID id) {
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSGradientValue.cpp ('k') | third_party/WebKit/Source/core/css/CSSGroupingRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698