diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-19 19:44:44 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-19 19:44:44 +0000 |
commit | 9314fbda45907b28a49522a85e0779da86e00644 (patch) | |
tree | 0105b92e56c4319d3b7617f1649867d83182ea6f /webkit/glue/webpopupmenu_impl.h | |
parent | 078b3461fa0eee0bcf9e4b43f8b7a3171f9e0018 (diff) | |
download | chromium_src-9314fbda45907b28a49522a85e0779da86e00644.zip chromium_src-9314fbda45907b28a49522a85e0779da86e00644.tar.gz chromium_src-9314fbda45907b28a49522a85e0779da86e00644.tar.bz2 |
Fix canary bot by defining platformPageClient method to do nothing.
TBR=dglazkov
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/215027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26655 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webpopupmenu_impl.h')
-rw-r--r-- | webkit/glue/webpopupmenu_impl.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/webkit/glue/webpopupmenu_impl.h b/webkit/glue/webpopupmenu_impl.h index 2fa56e5..e729310 100644 --- a/webkit/glue/webpopupmenu_impl.h +++ b/webkit/glue/webpopupmenu_impl.h @@ -13,6 +13,9 @@ #include "FramelessScrollViewClient.h" +// TODO(darin): remove this typedef once we roll webkit past r48511 +typedef PlatformWidget PlatformPageClient; + namespace WebCore { class Frame; class FramelessScrollView; @@ -88,7 +91,9 @@ class WebPopupMenuImpl : public WebKit::WebPopupMenu, const WebCore::IntRect& clip_rect); virtual WebCore::IntPoint screenToWindow(const WebCore::IntPoint&) const; virtual WebCore::IntRect windowToScreen(const WebCore::IntRect&) const; - virtual PlatformWidget platformWindow() const; + // TODO(darin): remove platformWindow method once we roll webkit past r48511 + virtual PlatformWidget platformWindow() const { return NULL; } + virtual PlatformPageClient platformPageClient() const { return NULL; } virtual void scrollRectIntoView(const WebCore::IntRect&, const WebCore::ScrollView*) const; virtual void scrollbarsModeDidChange() const; |