summaryrefslogtreecommitdiffstats
path: root/webkit/glue/chrome_client_impl.cc
diff options
context:
space:
mode:
authorjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-28 17:25:45 +0000
committerjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-28 17:25:45 +0000
commite5ef3c8b7bebbce20319c73ccf153f3da596d650 (patch)
treef5c09c82352e83f9272d3e6298a6d81080f28808 /webkit/glue/chrome_client_impl.cc
parent7a3bdc0069b8ae1ed6eb115999878cee5cfa9360 (diff)
downloadchromium_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
Diffstat (limited to 'webkit/glue/chrome_client_impl.cc')
-rw-r--r--webkit/glue/chrome_client_impl.cc3
1 files changed, 3 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