Changeset 65249 in webkit


Ignore:
Timestamp:
Aug 12, 2010 8:58:32 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-08-12 Hui Huang <hui.2.huang@nokia.com>

Reviewed by Eric Seidel.

m_windowRect is not updated because parent of PluginView is not
set when updatePluginWidget is called. plugin gets wrong window
size on setwindow.
https://bugs.webkit.org/show_bug.cgi?id=43635

  • plugins/symbian/PluginViewSymbian.cpp: (WebCore::PluginView::setParent):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r65248 r65249  
     12010-08-12  Hui Huang  <hui.2.huang@nokia.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        m_windowRect is not updated because parent of PluginView is not
     6        set when updatePluginWidget is called. plugin gets wrong window
     7        size on setwindow.
     8        https://bugs.webkit.org/show_bug.cgi?id=43635
     9
     10        * plugins/symbian/PluginViewSymbian.cpp:
     11        (WebCore::PluginView::setParent):
     12
    1132010-08-12  Pavel Feldman  <pfeldman@chromium.org>
    214
  • trunk/WebCore/plugins/symbian/PluginViewSymbian.cpp

    r62184 r65249  
    243243    Widget::setParent(parent);
    244244
    245     if (parent)
     245    if (parent) {
    246246        init();
     247        if (m_status == PluginStatusLoadedSuccessfully)
     248            updatePluginWidget();
     249    }
    247250}
    248251
Note: See TracChangeset for help on using the changeset viewer.