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

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

Issue 2730343003: Fix overflow:overlay scrollbar width for paint. (Closed)
Patch Set: Fix logic 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/PaintLayerScrollableArea.h
diff --git a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
index 98ef35a606c980297f4040e545948ed74336a531..648d40889390cb5dcaa2643c2eb76f8bce3ec545 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
@@ -354,9 +354,11 @@ class CORE_EXPORT PaintLayerScrollableArea final
int pixelSnappedScrollHeight() const;
int verticalScrollbarWidth(
- OverlayScrollbarClipBehavior = IgnoreOverlayScrollbarSize) const override;
+ OverlayScrollbarClipBehavior =
+ IgnorePlatformOverlayScrollbarSize) const override;
int horizontalScrollbarHeight(
- OverlayScrollbarClipBehavior = IgnoreOverlayScrollbarSize) const override;
+ OverlayScrollbarClipBehavior =
+ IgnorePlatformOverlayScrollbarSize) const override;
DoubleSize adjustedScrollOffset() const {
return toDoubleSize(DoublePoint(scrollOrigin()) + m_scrollOffset);

Powered by Google App Engine
This is Rietveld 408576698