Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Unified Diff: webkit/glue/plugins/webplugin_impl.cc

Issue 2752009: Fix media player painting bug. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/plugins/webplugin_delegate_impl_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/webplugin_impl.cc
===================================================================
--- webkit/glue/plugins/webplugin_impl.cc (revision 49686)
+++ webkit/glue/plugins/webplugin_impl.cc (working copy)
@@ -240,9 +240,15 @@
}
void WebPluginImpl::paint(WebCanvas* canvas, const WebRect& paint_rect) {
- if (!delegate_)
+ if (!delegate_ || !container_)
return;
+#if defined(OS_WIN)
+ // Force a geometry update if needed to allow plugins like media player
+ // which defer the initial geometry update to work.
+ container_->reportGeometry();
+#endif // OS_WIN
+
// Note that |canvas| is only used when in windowless mode.
delegate_->Paint(canvas, paint_rect);
}
@@ -291,8 +297,21 @@
}
}
+#if defined(OS_WIN)
+ // Don't cache the geometry during the first geometry update. The first
+ // geometry update sequence is received when Widget::setParent is called.
+ // For plugins like media player which have a bug where they only honor
+ // the first geometry update, we have a quirk which ignores the first
+ // geometry update. To ensure that these plugins work correctly in cases
+ // where we receive only one geometry update from webkit, we also force
+ // a geometry update during paint which should go out correctly as the
+ // initial geometry update was not cached.
+ if (!first_geometry_update_)
+ geometry_ = new_geometry;
+#else // OS_WIN
+ geometry_ = new_geometry;
+#endif // OS_WIN
first_geometry_update_ = false;
- geometry_ = new_geometry;
}
void WebPluginImpl::updateFocus(bool focused) {
« no previous file with comments | « webkit/glue/plugins/webplugin_delegate_impl_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698