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

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

Issue 2757533002: Fix overflow:overlay scrollbar width for paint. (Closed)
Patch Set: 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 e444af61aa706bea4f7af9f01058e943a666afd4..af3638057b21ad9d63567520d83a252ac2a5eaff 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
+++ b/third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.h
@@ -356,9 +356,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