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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp

Issue 2635143002: Changed EBoxSizing to an enum class and renamed its members (Closed)
Patch Set: Aded k prefix Created 3 years, 11 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/paint/PaintLayerScrollableArea.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
index d2c84bbc433e9098dddcd9f950068771ade68037..c19c18e4ae9ba3c071d15db4f84eaba669dc4062 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp
@@ -1574,7 +1574,7 @@ void PaintLayerScrollableArea::resize(const IntPoint& pos,
(currentSize + newOffset - adjustedOldOffset).expandedTo(minimumSize) -
currentSize);
- bool isBoxSizingBorder = box().style()->boxSizing() == BoxSizingBorderBox;
+ bool isBoxSizingBorder = box().style()->boxSizing() == EBoxSizing::kBorderBox;
EResize resize = box().style()->resize();
if (resize != RESIZE_VERTICAL && difference.width()) {
« no previous file with comments | « third_party/WebKit/Source/core/paint/BoxPaintInvalidator.cpp ('k') | third_party/WebKit/Source/core/style/ComputedStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698