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

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

Issue 2667493002: Changed EPosition to an enum class and renamed its members (Closed)
Patch Set: Rebase Created 3 years, 10 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 69567cf9688308ead8de04282fd0d50c5922cbd5..db84d64e2b7384c965f1f6741a0b9cac4d016893 100644
--- a/third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp
@@ -111,7 +111,7 @@ void LayoutFullScreen::updateStyle(LayoutObject* parent) {
fullscreenStyle->setAlignItemsPosition(ItemPositionCenter);
fullscreenStyle->setFlexDirection(FlowColumn);
- fullscreenStyle->setPosition(FixedPosition);
+ fullscreenStyle->setPosition(EPosition::kFixed);
fullscreenStyle->setLeft(Length(0, blink::Fixed));
fullscreenStyle->setTop(Length(0, blink::Fixed));
IntSize viewportSize = document().page()->frameHost().visualViewport().size();

Powered by Google App Engine
This is Rietveld 408576698