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

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

Issue 2949453002: Make EFlexDirection an enum class. (Closed)
Patch Set: Fix Created 3 years, 6 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/LayoutFullScreen.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp b/third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp
index 73c1d1f7fa5d03e704f699610caa2a81953a76a0..b2d29560a8894ab1cbe19f28ba25c1e8a0a89faf 100644
--- a/third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp
@@ -108,7 +108,7 @@ void LayoutFullScreen::UpdateStyle(LayoutObject* parent) {
// Alignment (align-items) value can't be used to resolve its children Self
// Alignment 'auto' values.
fullscreen_style->SetAlignItemsPosition(kItemPositionCenter);
- fullscreen_style->SetFlexDirection(kFlowColumn);
+ fullscreen_style->SetFlexDirection(EFlexDirection::kColumn);
fullscreen_style->SetPosition(EPosition::kFixed);
fullscreen_style->SetLeft(Length(0, blink::kFixed));

Powered by Google App Engine
This is Rietveld 408576698