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

Unified Diff: Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp

Issue 16982005: Allow objects without scrollbars to be scrollable (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix broken Mac build Created 7 years, 6 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: Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp
diff --git a/Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp b/Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp
index 1428191981a7597330661309bd0cb6d7f0ca1fe4..9301c09d183aa53542f307325946a77883b80161 100644
--- a/Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp
+++ b/Source/core/platform/chromium/support/WebScrollbarThemeClientImpl.cpp
@@ -176,18 +176,6 @@ WebCore::ScrollbarControlSize WebScrollbarThemeClientImpl::controlSize() const
return static_cast<WebCore::ScrollbarControlSize>(m_scrollbar->controlSize());
}
-int WebScrollbarThemeClientImpl::lineStep() const
-{
- ASSERT_NOT_REACHED();
- return 0;
-}
-
-int WebScrollbarThemeClientImpl::pageStep() const
-{
- ASSERT_NOT_REACHED();
- return 0;
-}
-
WebCore::ScrollbarPart WebScrollbarThemeClientImpl::pressedPart() const
{
return static_cast<WebCore::ScrollbarPart>(m_scrollbar->pressedPart());

Powered by Google App Engine
This is Rietveld 408576698