summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorlevin@chromium.org <levin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-20 18:03:48 +0000
committerlevin@chromium.org <levin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-20 18:03:48 +0000
commitbc40eee7d72dd71a373cc878110a256d6485a38e (patch)
tree4b12053c3df6ccbfcf11883382f404f2ededbe72 /webkit
parentea2e5aa57f173880eabea2054729b5e1bc6b3560 (diff)
downloadchromium_src-bc40eee7d72dd71a373cc878110a256d6485a38e.zip
chromium_src-bc40eee7d72dd71a373cc878110a256d6485a38e.tar.gz
chromium_src-bc40eee7d72dd71a373cc878110a256d6485a38e.tar.bz2
Fix the webkit.org build of chromium.
http://build.chromium.org/buildbot/waterfall.fyi/waterfall?builder=Webkit%20%28webkit.org%29 This is the same code that was there upstream before these methods became pure virtual. TBR=dglazkov git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16492 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/glue/chrome_client_impl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/glue/chrome_client_impl.h b/webkit/glue/chrome_client_impl.h
index 3a3fdc5..bcdf7a0 100644
--- a/webkit/glue/chrome_client_impl.h
+++ b/webkit/glue/chrome_client_impl.h
@@ -107,6 +107,7 @@ class ChromeClientImpl : public WebCore::ChromeClientChromium {
virtual PlatformWidget platformWindow() const;
virtual void contentsSizeChanged(WebCore::Frame*,
const WebCore::IntSize&) const;
+ virtual void scrollRectIntoView(const WebCore::IntRect&, const WebCore::ScrollView*) const { }
virtual void mouseDidMoveOverElement(const WebCore::HitTestResult& result,
unsigned modifierFlags);
@@ -118,8 +119,11 @@ class ChromeClientImpl : public WebCore::ChromeClientChromium {
virtual void exceededDatabaseQuota(WebCore::Frame*,
const WebCore::String& databaseName);
+ virtual void requestGeolocationPermissionForFrame(WebCore::Frame*, WebCore::Geolocation*) { }
+
virtual void runOpenPanel(WebCore::Frame*,
PassRefPtr<WebCore::FileChooser>);
+ virtual bool setCursor(WebCore::PlatformCursorHandle) { return false; }
virtual void popupOpened(WebCore::PopupContainer* popup_container,
const WebCore::IntRect& bounds,
bool activatable,