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

Unified Diff: Source/platform/exported/WebScrollbarThemeClientImpl.cpp

Issue 819953002: Mac: Update scrollbar size and input position during impl-overscroll (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Peure virtual Created 6 years 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
« no previous file with comments | « Source/platform/exported/WebScrollbarThemeClientImpl.h ('k') | Source/platform/scroll/Scrollbar.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebScrollbarThemeClientImpl.cpp
diff --git a/Source/platform/exported/WebScrollbarThemeClientImpl.cpp b/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
index 9343d0086ac87b4684751573277c612b48fa4d7a..801f7db29d10bfe4111ca2fa982a6aed2e9978d0 100644
--- a/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
+++ b/Source/platform/exported/WebScrollbarThemeClientImpl.cpp
@@ -220,4 +220,14 @@ void WebScrollbarThemeClientImpl::setIsAlphaLocked(bool flag)
m_scrollbar->setIsAlphaLocked(flag);
}
+float WebScrollbarThemeClientImpl::elasticOverscroll() const
+{
+ return m_scrollbar->elasticOverscroll();
+}
+
+void WebScrollbarThemeClientImpl::setElasticOverscroll(float elasticOverscroll)
+{
+ return m_scrollbar->setElasticOverscroll(elasticOverscroll);
+}
+
} // namespace blink
« no previous file with comments | « Source/platform/exported/WebScrollbarThemeClientImpl.h ('k') | Source/platform/scroll/Scrollbar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698