diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-28 17:25:45 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-28 17:25:45 +0000 |
commit | e5ef3c8b7bebbce20319c73ccf153f3da596d650 (patch) | |
tree | f5c09c82352e83f9272d3e6298a6d81080f28808 | |
parent | 7a3bdc0069b8ae1ed6eb115999878cee5cfa9360 (diff) | |
download | chromium_src-e5ef3c8b7bebbce20319c73ccf153f3da596d650.zip chromium_src-e5ef3c8b7bebbce20319c73ccf153f3da596d650.tar.gz chromium_src-e5ef3c8b7bebbce20319c73ccf153f3da596d650.tar.bz2 |
Build fix for our webkit port. http://trac.webkit.org/changeset/47866 added
a new method to ChromeClient, so now ours doesn't compile. I'm not 100% sure
that doing nothing is the right course of action here, but it seems to be what
most ports are doing.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/176014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24738 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | webkit/glue/chrome_client_impl.cc | 3 | ||||
-rw-r--r-- | webkit/glue/chrome_client_impl.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/webkit/glue/chrome_client_impl.cc b/webkit/glue/chrome_client_impl.cc index 451c9d6..75d30fd 100644 --- a/webkit/glue/chrome_client_impl.cc +++ b/webkit/glue/chrome_client_impl.cc @@ -501,6 +501,9 @@ void ChromeClientImpl::contentsSizeChanged(WebCore::Frame* frame, const } } +void ChromeClientImpl::scrollbarsModeDidChange() const { +} + void ChromeClientImpl::mouseDidMoveOverElement( const WebCore::HitTestResult& result, unsigned modifierFlags) { // Find out if the mouse is over a link, and if so, let our UI know... somehow diff --git a/webkit/glue/chrome_client_impl.h b/webkit/glue/chrome_client_impl.h index 81ed8eb..435e1f2 100644 --- a/webkit/glue/chrome_client_impl.h +++ b/webkit/glue/chrome_client_impl.h @@ -115,6 +115,7 @@ class ChromeClientImpl : public WebCore::ChromeClientChromium { const WebCore::IntSize&) const; virtual void scrollRectIntoView(const WebCore::IntRect&, const WebCore::ScrollView*) const { } + virtual void scrollbarsModeDidChange() const; virtual void mouseDidMoveOverElement(const WebCore::HitTestResult& result, unsigned modifierFlags); |