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

Unified Diff: third_party/WebKit/Source/core/css/CSSProperty.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/CSSProperty.h
diff --git a/third_party/WebKit/Source/core/css/CSSProperty.h b/third_party/WebKit/Source/core/css/CSSProperty.h
index fcf95c5428aa67a4436bc37c033a89d26dafa0ea..08f90e046e57d2326eeea8003a538572ac32b586 100644
--- a/third_party/WebKit/Source/core/css/CSSProperty.h
+++ b/third_party/WebKit/Source/core/css/CSSProperty.h
@@ -50,14 +50,16 @@ struct StylePropertyMetadata {
CSSPropertyID shorthandID() const;
- uint16_t m_propertyID : 10;
- uint16_t m_isSetFromShorthand : 1;
- uint16_t
- m_indexInShorthandsVector : 2; // If this property was set as part of an ambiguous shorthand, gives the index in the shorthands vector.
- uint16_t m_important : 1;
- uint16_t
- m_implicit : 1; // Whether or not the property was set implicitly as the result of a shorthand.
- uint16_t m_inherited : 1;
+ unsigned m_propertyID : 10;
+ unsigned m_isSetFromShorthand : 1;
+ // If this property was set as part of an ambiguous shorthand, gives the index
+ // in the shorthands vector.
+ unsigned m_indexInShorthandsVector : 2;
+ unsigned m_important : 1;
+ // Whether or not the property was set implicitly as the result of a
+ // shorthand.
+ unsigned m_implicit : 1;
+ unsigned m_inherited : 1;
};
class CSSProperty {

Powered by Google App Engine
This is Rietveld 408576698