[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

commit-queue at webkit.org commit-queue at webkit.org
Sun Feb 20 22:48:39 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 8f617b9632697a0dfc3ff599a91e073e7f42a384
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jan 11 20:39:33 2011 +0000

    2011-01-11  Viatcheslav Ostapenko  <ostapenko.viatcheslav at 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):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75535 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index 3180d3f..fcad05c 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2011-01-11  Viatcheslav Ostapenko  <ostapenko.viatcheslav at 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):
+
 2011-01-10  Zhenyao Mo  <zmo at google.com>
 
         Reviewed by Kenneth Russell.
diff --git a/Source/WebCore/plugins/symbian/PluginViewSymbian.cpp b/Source/WebCore/plugins/symbian/PluginViewSymbian.cpp
index b8a72b1..df4e9f6 100644
--- a/Source/WebCore/plugins/symbian/PluginViewSymbian.cpp
+++ b/Source/WebCore/plugins/symbian/PluginViewSymbian.cpp
@@ -278,8 +278,8 @@ void PluginView::setNPWindowIfNeeded()
     
     } else {
         // always call this method before painting.
-        m_npWindow.x = 0;
-        m_npWindow.y = 0;
+        m_npWindow.x = m_windowRect.x();
+        m_npWindow.y = m_windowRect.y();
     
         m_npWindow.clipRect.left = 0;
         m_npWindow.clipRect.top = 0;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list