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

Unified Diff: webkit/glue/plugins/webplugin_delegate_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.h ('k') | webkit/glue/plugins/webplugin_delegate_impl_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/webplugin_delegate_impl.cc
===================================================================
--- webkit/glue/plugins/webplugin_delegate_impl.cc (revision 49686)
+++ webkit/glue/plugins/webplugin_delegate_impl.cc (working copy)
@@ -138,6 +138,17 @@
void WebPluginDelegateImpl::UpdateGeometry(
const gfx::Rect& window_rect,
const gfx::Rect& clip_rect) {
+
+ if (first_set_window_call_) {
+ first_set_window_call_ = false;
+ // Plugins like media player on Windows have a bug where in they handle the
+ // first geometry update and ignore the rest resulting in painting issues.
+ // This quirk basically ignores the first set window call sequence for
+ // these plugins and has been tested for Windows plugins only.
+ if (quirks_ & PLUGIN_QUIRK_IGNORE_FIRST_SETWINDOW_CALL)
+ return;
+ }
+
if (windowless_) {
WindowlessUpdateGeometry(window_rect, clip_rect);
} else {
« no previous file with comments | « webkit/glue/plugins/webplugin_delegate_impl.h ('k') | webkit/glue/plugins/webplugin_delegate_impl_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698