diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-16 23:04:23 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-16 23:04:23 +0000 |
commit | d7f4595986302dcf131b943152a843d067e53c1e (patch) | |
tree | 7165e6c839aaae33587dab4dbc28df862d1c8428 /webkit/glue/webplugin_impl.h | |
parent | efb07436b9ba4737247cdf0e8ba0529e27942468 (diff) | |
download | chromium_src-d7f4595986302dcf131b943152a843d067e53c1e.zip chromium_src-d7f4595986302dcf131b943152a843d067e53c1e.tar.gz chromium_src-d7f4595986302dcf131b943152a843d067e53c1e.tar.bz2 |
Improve scrolling performance when there are many windowed plugins in a page.
This works by parenting windowed plugins with an HWND that's hosted in the browser process, so that no synchronous cross process messages are used when scrolling.
BUG=5428
Review URL: http://codereview.chromium.org/18082
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8239 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webplugin_impl.h')
-rw-r--r-- | webkit/glue/webplugin_impl.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/webkit/glue/webplugin_impl.h b/webkit/glue/webplugin_impl.h index 1d11d71..3654d3a 100644 --- a/webkit/glue/webplugin_impl.h +++ b/webkit/glue/webplugin_impl.h @@ -41,6 +41,7 @@ namespace WebCore { class ResourceHandle; class ResourceError; class ResourceResponse; + class ScrollView; class String; class Widget; } @@ -66,6 +67,7 @@ class WebPluginContainer : public WebCore::Widget { virtual void handleEvent(WebCore::Event* event); virtual void frameRectsChanged(); virtual void setParentVisible(bool visible); + virtual void setParent(WebCore::ScrollView* view); #if USE(JSC) virtual bool isPluginView() const; @@ -325,11 +327,7 @@ class WebPluginImpl : public WebPlugin, WebFrameImpl* webframe_; WebPluginDelegate* delegate_; - bool force_geometry_update_; bool visible_; - // Set when we receive the first paint notification for a windowed - // plugin widget. - bool received_first_paint_notification_; WebPluginContainer* widget_; |