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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_block_node.h

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_block_node.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_block_node.h b/third_party/WebKit/Source/core/layout/ng/ng_block_node.h
index 7711a726c8a99879cdb4fce7d9a22ffb0d3c278f..bb783e49eb769ab95fbdf47de2f0cd6a2af8cd7a 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_block_node.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_block_node.h
@@ -86,8 +86,8 @@ class CORE_EXPORT NGBlockNode final : public NGLayoutInputNode {
DEFINE_TYPE_CASTS(NGBlockNode,
NGLayoutInputNode,
node,
- node->Type() == NGLayoutInputNode::LegacyBlock,
- node.Type() == NGLayoutInputNode::LegacyBlock);
+ node->Type() == NGLayoutInputNode::kLegacyBlock,
+ node.Type() == NGLayoutInputNode::kLegacyBlock);
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698