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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc

Issue 2536323003: [LayoutNG] Fix enum values to conform to kEnumName in style guide. (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/layout/ng/ng_inline_node.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc b/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
index 72e5ed6e9ebd908818d8bb700ec6b16b16fa4d21..429a9d312bec3c0d499511c0bbb870710a839bb9 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
@@ -26,7 +26,7 @@ namespace blink {
NGInlineNode::NGInlineNode(LayoutObject* start_inline,
ComputedStyle* block_style)
- : NGLayoutInputNode(NGLayoutInputNodeType::LegacyInline),
+ : NGLayoutInputNode(NGLayoutInputNodeType::kLegacyInline),
start_inline_(start_inline),
last_inline_(nullptr),
block_style_(block_style) {
@@ -35,7 +35,7 @@ NGInlineNode::NGInlineNode(LayoutObject* start_inline,
}
NGInlineNode::NGInlineNode()
- : NGLayoutInputNode(NGLayoutInputNodeType::LegacyInline),
+ : NGLayoutInputNode(NGLayoutInputNodeType::kLegacyInline),
start_inline_(nullptr),
last_inline_(nullptr),
block_style_(nullptr) {}

Powered by Google App Engine
This is Rietveld 408576698