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

Unified Diff: third_party/WebKit/Source/core/html/HTMLRubyElement.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/HTMLRubyElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLRubyElement.cpp b/third_party/WebKit/Source/core/html/HTMLRubyElement.cpp
index 966eb222b10220e362aa23c9e177db18410776c5..cb7b429eac41b8c20d178a2e21e64adc695cbbd5 100644
--- a/third_party/WebKit/Source/core/html/HTMLRubyElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLRubyElement.cpp
@@ -17,9 +17,9 @@ inline HTMLRubyElement::HTMLRubyElement(Document& document)
DEFINE_NODE_FACTORY(HTMLRubyElement)
LayoutObject* HTMLRubyElement::createLayoutObject(const ComputedStyle& style) {
- if (style.display() == EDisplay::Inline)
+ if (style.display() == EDisplay::kInline)
return new LayoutRubyAsInline(this);
- if (style.display() == EDisplay::Block)
+ if (style.display() == EDisplay::kBlock)
return new LayoutRubyAsBlock(this);
return LayoutObject::createObject(this, style);
}
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLRTElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698