diff options
author | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-28 18:34:53 +0000 |
---|---|---|
committer | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-28 18:34:53 +0000 |
commit | cb9c9522e5a7d8dd42a98a0345c4feb02184c02d (patch) | |
tree | ede675d779ea10b9899b12fbacbd9b4bf0074f30 /webkit/glue | |
parent | a89576ce9e323db59542e790e1f34d970117a1d6 (diff) | |
download | chromium_src-cb9c9522e5a7d8dd42a98a0345c4feb02184c02d.zip chromium_src-cb9c9522e5a7d8dd42a98a0345c4feb02184c02d.tar.gz chromium_src-cb9c9522e5a7d8dd42a98a0345c4feb02184c02d.tar.bz2 |
Build fix part 2 for http://trac.webkit.org/changeset/47866.
scrollbarsModeDidChange was also added to HostWindow.h.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/183001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24755 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r-- | webkit/glue/webpopupmenu_impl.cc | 4 | ||||
-rw-r--r-- | webkit/glue/webpopupmenu_impl.h | 1 |
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); |