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

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

Issue 2912673002: Make StyleRareNonInheritedData::draggable_regions a bit field. (Closed)
Patch Set: Created 3 years, 7 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/StyleRareNonInheritedData.h
diff --git a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h
index ec02d66b0da12975cd0e8a7912f1394323a3284b..e01a61b61037ef4470306a5b87ff585c2bacba36 100644
--- a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h
+++ b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h
@@ -116,7 +116,7 @@ class CORE_EXPORT StyleRareNonInheritedData
LengthPoint object_position_;
LineClampValue line_clamp; // An Apple extension.
- DraggableRegionMode draggable_region_mode_;
+ unsigned draggable_region_mode_ : 2; // DraggableRegionMode
DataRef<StyleDeprecatedFlexibleBoxData>
deprecated_flexible_box_; // Flexible box properties

Powered by Google App Engine
This is Rietveld 408576698