diff options
-rw-r--r-- | webkit/port/platform/mac/ScrollViewMac.mm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/webkit/port/platform/mac/ScrollViewMac.mm b/webkit/port/platform/mac/ScrollViewMac.mm index ac21217..55e3d72 100644 --- a/webkit/port/platform/mac/ScrollViewMac.mm +++ b/webkit/port/platform/mac/ScrollViewMac.mm @@ -221,4 +221,44 @@ bool ScrollView::isScrollable() { return false; } +// PLATFORM(CHROMIUM) is defined, so we need to stub these methods: + +void ScrollView::detachFromWindow() +{ +} + +void ScrollView::attachToWindow() +{ +} + +void ScrollView::hide() +{ +} + +void ScrollView::show() +{ +} + +void ScrollView::themeChanged() +{ +} + +void ScrollView::setParent(ScrollView* parentView) +{ +} + +void Widget::setParent(ScrollView* parentView) +{ +} + +IntPoint Widget::convertSelfToChild(const Widget* child, const IntPoint& point) const +{ + return IntPoint(); +} + +IntPoint Widget::convertChildToSelf(const Widget* child, const IntPoint& point) const +{ + return IntPoint(); +} + } |