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

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

Issue 2670643004: Rename EDisplay values with k prefix. (Closed)
Patch Set: Rebase Created 3 years, 9 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/ComputedStyleConstants.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
index 1175eed8b02fb575a55011e73c91731d74e55bd9..e16a15cae13c958ba1e8dfded0206fdd7e433326 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
@@ -335,29 +335,29 @@ enum class ECursor : unsigned {
};
enum class EDisplay : unsigned {
- Inline,
- Block,
- ListItem,
- InlineBlock,
- Table,
- InlineTable,
- TableRowGroup,
- TableHeaderGroup,
- TableFooterGroup,
- TableRow,
- TableColumnGroup,
- TableColumn,
- TableCell,
- TableCaption,
- WebkitBox,
- WebkitInlineBox,
- Flex,
- InlineFlex,
- Grid,
- InlineGrid,
- Contents,
- FlowRoot,
- None
+ kInline,
+ kBlock,
+ kListItem,
+ kInlineBlock,
+ kTable,
+ kInlineTable,
+ kTableRowGroup,
+ kTableHeaderGroup,
+ kTableFooterGroup,
+ kTableRow,
+ kTableColumnGroup,
+ kTableColumn,
+ kTableCell,
+ kTableCaption,
+ kWebkitBox,
+ kWebkitInlineBox,
+ kFlex,
+ kInlineFlex,
+ kGrid,
+ kInlineGrid,
+ kContents,
+ kFlowRoot,
+ kNone
};
enum class EInsideLink : unsigned {
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.cpp ('k') | third_party/WebKit/Source/core/svg/SVGGElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698