int ScrollbarGroup::scrollSize(WebCore::ScrollbarOrientation orientation) const { WebPluginScrollbarImpl* webScrollbar = orientation == HorizontalScrollbar ? m_horizontalScrollbar : m_verticalScrollbar; if (!webScrollbar) return 0; Scrollbar* scrollbar = webScrollbar->scrollbar(); return scrollbar->totalSize() - scrollbar->visibleSize(); }
int ScrollView::scrollSize(ScrollbarOrientation orientation) const { Scrollbar* scrollbar = ((orientation == HorizontalScrollbar) ? m_horizontalScrollbar : m_verticalScrollbar).get(); return scrollbar ? (scrollbar->totalSize() - scrollbar->visibleSize()) : 0; }