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

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

Issue 2578403002: Changed EVerticalAlign to an enum class and renamed its members (Closed)
Patch Set: Created 4 years 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 be3f321dd4ec11e8f32db1bae193acbb95637014..65f97d94cd7d35d6c533c5e89de0c9117e598ef8 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
@@ -156,17 +156,17 @@ enum class EOverflow : unsigned {
PagedY
};
-enum EVerticalAlign {
- VerticalAlignBaseline,
- VerticalAlignMiddle,
- VerticalAlignSub,
- VerticalAlignSuper,
- VerticalAlignTextTop,
- VerticalAlignTextBottom,
- VerticalAlignTop,
- VerticalAlignBottom,
- VerticalAlignBaselineMiddle,
- VerticalAlignLength
+enum class EVerticalAlign : unsigned {
+ Baseline,
+ Middle,
+ Sub,
+ Super,
+ TextTop,
+ TextBottom,
+ Top,
+ Bottom,
+ BaselineMiddle,
+ Length
};
enum EClear { ClearNone = 0, ClearLeft = 1, ClearRight = 2, ClearBoth = 3 };
« 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