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

Unified Diff: third_party/WebKit/Source/platform/scroll/ScrollableArea.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/platform/scroll/ScrollableArea.h
diff --git a/third_party/WebKit/Source/platform/scroll/ScrollableArea.h b/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
index 6c5a92464f643a060839ea2e5bb88cc2682393ef..50f7dbc624969bbf9fdbb206bf7f4f40868d40b6 100644
--- a/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
+++ b/third_party/WebKit/Source/platform/scroll/ScrollableArea.h
@@ -331,9 +331,9 @@ class PLATFORM_EXPORT ScrollableArea : public GarbageCollectedMixin,
IntSize excludeScrollbars(const IntSize&) const;
virtual int verticalScrollbarWidth(
- OverlayScrollbarClipBehavior = IgnoreOverlayScrollbarSize) const;
+ OverlayScrollbarClipBehavior = IgnorePlatformOverlayScrollbarSize) const;
virtual int horizontalScrollbarHeight(
- OverlayScrollbarClipBehavior = IgnoreOverlayScrollbarSize) const;
+ OverlayScrollbarClipBehavior = IgnorePlatformOverlayScrollbarSize) const;
// Returns the widget associated with this ScrollableArea.
virtual FrameViewBase* getWidget() { return nullptr; }

Powered by Google App Engine
This is Rietveld 408576698