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

Unified Diff: third_party/WebKit/Source/core/frame/RootFrameViewport.h

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/frame/RootFrameViewport.h
diff --git a/third_party/WebKit/Source/core/frame/RootFrameViewport.h b/third_party/WebKit/Source/core/frame/RootFrameViewport.h
index 33ccd9803a3fd605c01c344f1136ab47fe44d31e..72c87ed639f7c4c2d864304f34e3728d05ff1892 100644
--- a/third_party/WebKit/Source/core/frame/RootFrameViewport.h
+++ b/third_party/WebKit/Source/core/frame/RootFrameViewport.h
@@ -86,9 +86,11 @@ class CORE_EXPORT RootFrameViewport final
GraphicsLayer* layerForVerticalScrollbar() const override;
GraphicsLayer* layerForScrollCorner() const override;
int horizontalScrollbarHeight(
- OverlayScrollbarClipBehavior = IgnoreOverlayScrollbarSize) const override;
+ OverlayScrollbarClipBehavior =
+ IgnorePlatformOverlayScrollbarSize) const override;
int verticalScrollbarWidth(
- OverlayScrollbarClipBehavior = IgnoreOverlayScrollbarSize) const override;
+ OverlayScrollbarClipBehavior =
+ IgnorePlatformOverlayScrollbarSize) const override;
ScrollResult userScroll(ScrollGranularity, const FloatSize&) override;
bool scrollAnimatorEnabled() const override;
HostWindow* getHostWindow() const override;

Powered by Google App Engine
This is Rietveld 408576698