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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThread.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/LayoutMultiColumnFlowThread.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThread.cpp b/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThread.cpp
index 434e9574a9e3279ad0fb712ecad85e33c734c0e0..21083bc7fbe2443d0340ab40c2e81e8f6b7f9e0c 100644
--- a/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThread.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThread.cpp
@@ -1113,9 +1113,9 @@ static inline bool needsToReinsertIntoFlowThread(
newStyle.hasTransformRelatedProperty())
return true;
return (oldStyle.hasInFlowPosition() &&
- newStyle.position() == StaticPosition) ||
+ newStyle.position() == EPosition::kStatic) ||
(newStyle.hasInFlowPosition() &&
- oldStyle.position() == StaticPosition);
+ oldStyle.position() == EPosition::kStatic);
}
static inline bool needsToRemoveFromFlowThread(const ComputedStyle& oldStyle,
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutInline.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698