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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTextTrackContainer.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/LayoutTextTrackContainer.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTextTrackContainer.cpp b/third_party/WebKit/Source/core/layout/LayoutTextTrackContainer.cpp
index a728d16d7abae6af638bb8ab8597403f4c502302..07ed95fd5dfd769e618f8a8d12fa799f7636b6e4 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTextTrackContainer.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTextTrackContainer.cpp
@@ -41,7 +41,7 @@ LayoutTextTrackContainer::LayoutTextTrackContainer(Element* element)
void LayoutTextTrackContainer::layout()
{
LayoutBlockFlow::layout();
- if (style()->display() == NONE)
+ if (style()->display() == EDisplay::None)
return;
DeprecatedScheduleStyleRecalcDuringLayout marker(node()->document().lifecycle());

Powered by Google App Engine
This is Rietveld 408576698