[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 13:33:32 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 03fe4da5f1cbd85abac2b7e0133da0042e561498
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 20 16:16:37 2010 +0000

    2010-09-20  Patrick Gansterer  <paroga at paroga.com>
    
            Reviewed by Adam Roben.
    
            [WINCE] Buildfix for PluginViewWin.cpp
            https://bugs.webkit.org/show_bug.cgi?id=46033
    
            * plugins/win/PluginViewWin.cpp:
            (WebCore::PluginView::paintIntoTransformedContext):
            (WebCore::PluginView::snapshot):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67854 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 816884e..a849253 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-09-20  Patrick Gansterer  <paroga at paroga.com>
+
+        Reviewed by Adam Roben.
+
+        [WINCE] Buildfix for PluginViewWin.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=46033
+
+        * plugins/win/PluginViewWin.cpp:
+        (WebCore::PluginView::paintIntoTransformedContext):
+        (WebCore::PluginView::snapshot):
+
 2010-09-18  David Hyatt  <hyatt at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/WebCore/plugins/win/PluginViewWin.cpp b/WebCore/plugins/win/PluginViewWin.cpp
index 84d2984..758d90a 100644
--- a/WebCore/plugins/win/PluginViewWin.cpp
+++ b/WebCore/plugins/win/PluginViewWin.cpp
@@ -520,7 +520,9 @@ bool PluginView::dispatchNPEvent(NPEvent& npEvent)
 void PluginView::paintIntoTransformedContext(HDC hdc)
 {
     if (m_isWindowed) {
+#if !OS(WINCE)
         SendMessage(platformPluginWidget(), WM_PRINTCLIENT, reinterpret_cast<WPARAM>(hdc), PRF_CLIENT | PRF_CHILDREN | PRF_OWNED);
+#endif
         return;
     }
 
@@ -1010,7 +1012,7 @@ void PluginView::platformDestroy()
 
 PassRefPtr<Image> PluginView::snapshot()
 {
-#if !PLATFORM(WX)
+#if !PLATFORM(WX) && !OS(WINCE)
     OwnPtr<HDC> hdc(CreateCompatibleDC(0));
 
     if (!m_isWindowed) {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list