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

Unified Diff: webkit/glue/plugins/webplugin_delegate_impl_win.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_mac.mm ('k') | webkit/glue/plugins/webplugin_impl.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_win.cc
===================================================================
--- webkit/glue/plugins/webplugin_delegate_impl_win.cc (revision 49686)
+++ webkit/glue/plugins/webplugin_delegate_impl_win.cc (working copy)
@@ -260,7 +260,8 @@
#pragma warning(suppress: 4355) // can use this
user_gesture_msg_factory_(this),
handle_event_depth_(0),
- mouse_hook_(NULL) {
+ mouse_hook_(NULL),
+ first_set_window_call_(true) {
memset(&window_, 0, sizeof(window_));
const WebPluginInfo& plugin_info = instance_->plugin_lib()->plugin_info();
@@ -298,6 +299,11 @@
// Windowless mode doesn't work in the WMP NPAPI plugin.
quirks_ |= PLUGIN_QUIRK_NO_WINDOWLESS;
+ // The media player plugin sets its size on the first NPP_SetWindow call
+ // and never updates its size. We should call the underlying NPP_SetWindow
+ // only when we have the correct size.
+ quirks_ |= PLUGIN_QUIRK_IGNORE_FIRST_SETWINDOW_CALL;
+
if (filename == kOldWMPPlugin) {
// Non-admin users on XP couldn't modify the key to force the new UI.
quirks_ |= PLUGIN_QUIRK_PATCH_REGENUMKEYEXW;
@@ -318,6 +324,12 @@
// Explanation for this quirk can be found in
// WebPluginDelegateImpl::Initialize.
quirks_ |= PLUGIN_QUIRK_PATCH_SETCURSOR;
+ } else if (plugin_info.name.find(L"DivX Web Player") !=
+ std::wstring::npos) {
+ // The divx plugin sets its size on the first NPP_SetWindow call and never
+ // updates its size. We should call the underlying NPP_SetWindow only when
+ // we have the correct size.
+ quirks_ |= PLUGIN_QUIRK_IGNORE_FIRST_SETWINDOW_CALL;
}
}
« no previous file with comments | « webkit/glue/plugins/webplugin_delegate_impl_mac.mm ('k') | webkit/glue/plugins/webplugin_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698