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

Unified Diff: third_party/WebKit/Source/core/style/FillLayer.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/FillLayer.h
diff --git a/third_party/WebKit/Source/core/style/FillLayer.h b/third_party/WebKit/Source/core/style/FillLayer.h
index 1d128c584eb9e07418a9c64a6a8e9e43ec417878..df4b24b9a11ac52b6871abeefcc5f7f12dd078b6 100644
--- a/third_party/WebKit/Source/core/style/FillLayer.h
+++ b/third_party/WebKit/Source/core/style/FillLayer.h
@@ -330,14 +330,15 @@ class CORE_EXPORT FillLayer {
unsigned m_type : 1; // EFillLayerType
- mutable unsigned
- m_thisOrNextLayersClipMax : 2; // EFillBox, maximum m_clip value from this to bottom layer
- mutable unsigned
- m_thisOrNextLayersUseContentBox : 1; // True if any of this or subsequent layers has content-box clip or origin.
- mutable unsigned
- m_thisOrNextLayersHaveLocalAttachment : 1; // True if any of this or subsequent layers has local attachment.
- mutable unsigned
- m_cachedPropertiesComputed : 1; // Set once any of the above is accessed. The layers will be frozen thereafter.
+ // EFillBox, maximum m_clip value from this to bottom layer
+ mutable unsigned m_thisOrNextLayersClipMax : 2;
+ // True if any of this or subsequent layers has content-box clip or origin.
+ mutable unsigned m_thisOrNextLayersUseContentBox : 1;
+ // True if any of this or subsequent layers has local attachment.
+ mutable unsigned m_thisOrNextLayersHaveLocalAttachment : 1;
+ // Set once any of the above is accessed. The layers will be frozen
+ // thereafter.
+ mutable unsigned m_cachedPropertiesComputed : 1;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/style/ContentData.cpp ('k') | third_party/WebKit/Source/core/style/FillLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698