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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTextControlMultiLine.cpp

Issue 2370673002: Changed EDisplay to an enum class and renamed its members to be keywords (Closed)
Patch Set: Comment Created 4 years, 3 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/layout/LayoutTextControlMultiLine.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTextControlMultiLine.cpp b/third_party/WebKit/Source/core/layout/LayoutTextControlMultiLine.cpp
index c673c0ddc07cce2cadb9e7285a12f9950092b1a4..c7a63d091039185496a424601e9706aeb085dc06 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTextControlMultiLine.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTextControlMultiLine.cpp
@@ -81,7 +81,7 @@ PassRefPtr<ComputedStyle> LayoutTextControlMultiLine::createInnerEditorStyle(con
RefPtr<ComputedStyle> textBlockStyle = ComputedStyle::create();
textBlockStyle->inheritFrom(startStyle);
adjustInnerEditorStyle(*textBlockStyle);
- textBlockStyle->setDisplay(BLOCK);
+ textBlockStyle->setDisplay(EDisplay::Block);
textBlockStyle->setUnique();
return textBlockStyle.release();

Powered by Google App Engine
This is Rietveld 408576698