Changeset 75535 in webkit


Ignore:
Timestamp:
Jan 11, 2011 12:39:33 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-01-11 Viatcheslav Ostapenko <ostapenko.viatcheslav@nokia.com>

Reviewed by Eric Seidel.

[Qt] Provide plugin coordinates to windowless plugins on Symbian.
https://bugs.webkit.org/show_bug.cgi?id=52213

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r75524 r75535  
     12011-01-11  Viatcheslav Ostapenko  <ostapenko.viatcheslav@nokia.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Qt] Provide plugin coordinates to windowless plugins on Symbian.
     6        https://bugs.webkit.org/show_bug.cgi?id=52213
     7
     8        * plugins/symbian/PluginViewSymbian.cpp:
     9        (WebCore::PluginView::setNPWindowIfNeeded):
     10
    1112011-01-10  Zhenyao Mo  <zmo@google.com>
    212
  • trunk/Source/WebCore/plugins/symbian/PluginViewSymbian.cpp

    r69282 r75535  
    279279    } else {
    280280        // always call this method before painting.
    281         m_npWindow.x = 0;
    282         m_npWindow.y = 0;
     281        m_npWindow.x = m_windowRect.x();
     282        m_npWindow.y = m_windowRect.y();
    283283   
    284284        m_npWindow.clipRect.left = 0;
Note: See TracChangeset for help on using the changeset viewer.