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

Unified Diff: third_party/WebKit/Source/core/html/HTMLSummaryElement.cpp

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/html/HTMLSummaryElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLSummaryElement.cpp b/third_party/WebKit/Source/core/html/HTMLSummaryElement.cpp
index f789441a0d49868408bc04fe356d7dc52bb14581..a5e07405f6ac5f289a6ee3c8557aef9de7af527f 100644
--- a/third_party/WebKit/Source/core/html/HTMLSummaryElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLSummaryElement.cpp
@@ -47,8 +47,8 @@ HTMLSummaryElement::HTMLSummaryElement(Document& document)
LayoutObject* HTMLSummaryElement::createLayoutObject(
const ComputedStyle& style) {
EDisplay display = style.display();
- if (display == EDisplay::Flex || display == EDisplay::InlineFlex ||
- display == EDisplay::Grid || display == EDisplay::InlineGrid)
+ if (display == EDisplay::kFlex || display == EDisplay::kInlineFlex ||
+ display == EDisplay::kGrid || display == EDisplay::kInlineGrid)
return LayoutObject::createObject(this, style);
return new LayoutBlockFlow(this);
}

Powered by Google App Engine
This is Rietveld 408576698