summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webkit/glue/webpopupmenu_impl.cc4
-rw-r--r--webkit/glue/webpopupmenu_impl.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/webkit/glue/webpopupmenu_impl.cc b/webkit/glue/webpopupmenu_impl.cc
index 9a9d7b7..ce7f2ad 100644
--- a/webkit/glue/webpopupmenu_impl.cc
+++ b/webkit/glue/webpopupmenu_impl.cc
@@ -274,6 +274,10 @@ void WebPopupMenuImpl::scrollRectIntoView(
// that implements its own scrolling.
}
+void WebPopupMenuImpl::scrollbarsModeDidChange() const {
+ // Nothing to be done since we have no concept of different scrollbar modes.
+}
+
//-----------------------------------------------------------------------------
// WebCore::FramelessScrollViewClient
diff --git a/webkit/glue/webpopupmenu_impl.h b/webkit/glue/webpopupmenu_impl.h
index b6ef6ed..2fa56e5 100644
--- a/webkit/glue/webpopupmenu_impl.h
+++ b/webkit/glue/webpopupmenu_impl.h
@@ -91,6 +91,7 @@ class WebPopupMenuImpl : public WebKit::WebPopupMenu,
virtual PlatformWidget platformWindow() const;
virtual void scrollRectIntoView(const WebCore::IntRect&,
const WebCore::ScrollView*) const;
+ virtual void scrollbarsModeDidChange() const;
// WebCore::FramelessScrollViewClient methods:
virtual void popupClosed(WebCore::FramelessScrollView* popup_view);