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

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

Issue 2667533002: Remove explicit enum values in EPosition. (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | 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 d5f4a784e8f7118426a2b18bdc1a0efc4db3ea5e..b3b4baf6a941d82b60a9f0a1464ce260786c765d 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
@@ -120,12 +120,11 @@ enum EBorderPrecedence {
enum OutlineIsAuto { OutlineIsAutoOff = 0, OutlineIsAutoOn };
enum EPosition {
- StaticPosition = 0,
- RelativePosition = 1,
- AbsolutePosition = 2,
- StickyPosition = 3,
- // This value is required to pack our bits efficiently in LayoutObject.
- FixedPosition = 6
+ StaticPosition,
+ RelativePosition,
+ AbsolutePosition,
+ StickyPosition,
+ FixedPosition
};
enum EMarginCollapse {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698