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

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

Issue 2730343003: Fix overflow:overlay scrollbar width for paint. (Closed)
Patch Set: rebase Created 3 years, 9 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/PaintLayerClipper.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp b/third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp
index ec07bc05fce943325104f795d01ee3dba24dde8c..e7dbd7470e30caf86a33b8fdbd7f87425e17ed8d 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp
@@ -588,7 +588,8 @@ ClipRects& PaintLayerClipper::paintingClipRects(
const LayoutSize& subpixelAccumulation) const {
DCHECK(!m_geometryMapper);
ClipRectsContext context(rootLayer, PaintingClipRects,
- IgnoreOverlayScrollbarSize, subpixelAccumulation);
+ IgnorePlatformOverlayScrollbarSize,
+ subpixelAccumulation);
if (respectOverflowClip == IgnoreOverflowClip)
context.setIgnoreOverflowClip();
return getClipRects(context);

Powered by Google App Engine
This is Rietveld 408576698