summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webplugin_impl.h
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-31 23:28:21 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-31 23:28:21 +0000
commit8922de5133af29b6d89830f5df893b3eccf3c7c1 (patch)
tree063c92f565397698513d028dd657a0f868a355e8 /webkit/glue/webplugin_impl.h
parent930d36bc6e6b640384de59a877ce1351fddc2fe2 (diff)
downloadchromium_src-8922de5133af29b6d89830f5df893b3eccf3c7c1.zip
chromium_src-8922de5133af29b6d89830f5df893b3eccf3c7c1.tar.gz
chromium_src-8922de5133af29b6d89830f5df893b3eccf3c7c1.tar.bz2
This fixes bug http://code.google.com/p/chromium/issues/detail?id=3881, which
was NPAPI plugin UI test failures. This occured as a sideeffect of the webkit merge. Some functions in widget.h which were implemented by WebPluginContainer no longer exist. We need to implement their replacements on similar lines. Bug=3881 R=jam Review URL: http://codereview.chromium.org/8775 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4343 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webplugin_impl.h')
-rw-r--r--webkit/glue/webplugin_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/webplugin_impl.h b/webkit/glue/webplugin_impl.h
index 77e0100..e16f1b6 100644
--- a/webkit/glue/webplugin_impl.h
+++ b/webkit/glue/webplugin_impl.h
@@ -64,7 +64,8 @@ class WebPluginContainer : public WebCore::Widget {
virtual void show();
virtual void hide();
virtual void handleEvent(WebCore::Event* event);
- virtual void frameRectsChanged() const {}
+ virtual void frameRectsChanged() const;
+ virtual void setParentVisible(bool visible);
#if USE(JSC)
virtual bool isPluginView() const;
@@ -190,7 +191,6 @@ class WebPluginImpl : public WebPlugin,
// Widget implementation:
virtual WebCore::IntRect windowClipRect() const;
- virtual void geometryChanged() const;
// Returns window-relative rectangles that should clip this widget.
// Only rects that intersect the given bounds are relevant.