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/chrome_client_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/chrome_client_impl.h')
-rw-r--r-- | webkit/glue/chrome_client_impl.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/webkit/glue/chrome_client_impl.h b/webkit/glue/chrome_client_impl.h index d95483d..5108278 100644 --- a/webkit/glue/chrome_client_impl.h +++ b/webkit/glue/chrome_client_impl.h @@ -14,6 +14,9 @@ MSVC_POP_WARNING(); class WebViewImpl; +// TODO(darin): remove this typedef once we roll webkit past r48511 +typedef PlatformWidget PlatformPageClient; + namespace WebCore { class HTMLParserQuirks; class PopupContainer; @@ -110,7 +113,9 @@ class ChromeClientImpl : public WebCore::ChromeClientChromium { const WebCore::IntRect& clipRect); 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 contentsSizeChanged(WebCore::Frame*, const WebCore::IntSize&) const; virtual void scrollRectIntoView(const WebCore::IntRect&, const WebCore::ScrollView*) const { } |