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

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

Issue 2569013006: Changed EOverflow to an enum class and renamed its members (Closed)
Patch Set: Rebase 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
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 45d0e6b5208e9331e95c5794568977effd9e1e1d..33542a16e092756e526c2e8e0c7bea8a43ef0cda 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
@@ -148,14 +148,14 @@ enum EBoxSizing { BoxSizingContentBox, BoxSizingBorderBox };
enum class EOverflowAnchor : unsigned { Visible, None, Auto };
-enum EOverflow {
- OverflowVisible,
- OverflowHidden,
- OverflowScroll,
- OverflowAuto,
- OverflowOverlay,
- OverflowPagedX,
- OverflowPagedY
+enum class EOverflow : unsigned {
+ Visible,
+ Hidden,
+ Scroll,
+ Auto,
+ Overlay,
+ PagedX,
+ PagedY
};
enum EVerticalAlign {
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | third_party/WebKit/Source/core/style/ComputedStyleTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698