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

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

Issue 2949453002: Make EFlexDirection an enum class. (Closed)
Patch Set: Fix Created 3 years, 6 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
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/ComputedStyleConstants.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
index f90fa53f0f531331762f1c77d2333b03ed872b07..0f211e75bdfc072132f20aac360a936357bbbdfe 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
@@ -157,12 +157,7 @@ enum EBoxLines { SINGLE, MULTIPLE };
// CSS3 Flexbox Properties
-enum EFlexDirection {
- kFlowRow,
- kFlowRowReverse,
- kFlowColumn,
- kFlowColumnReverse
-};
+enum class EFlexDirection { kRow, kRowReverse, kColumn, kColumnReverse };
enum EFlexWrap { kFlexNoWrap, kFlexWrap, kFlexWrapReverse };
// CSS3 Image Values
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698