[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Thu Apr 8 00:49:37 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 9f510cdbdc8bffd83ecd5deb0414497a8f1d5e4e
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Dec 27 08:39:57 2009 +0000

    2009-12-27  Patrick Gansterer  <paroga at paroga.com>
    
            Reviewed by Adam Barth.
    
            WinCE buildfixes (missing headers and unsupported HWND_MESSAGE)
    
            * platform/wince/MIMETypeRegistryWince.cpp:
            * platform/wince/SearchPopupMenuWince.cpp:
            * platform/wince/SharedTimerWince.cpp:
            (WebCore::initializeOffScreenTimerWindow):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52572 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index a3fc5d2..9b4758c 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2009-12-27  Patrick Gansterer  <paroga at paroga.com>
+
+        Reviewed by Adam Barth.
+
+        WinCE buildfixes (missing headers and unsupported HWND_MESSAGE)
+
+        * platform/wince/MIMETypeRegistryWince.cpp:
+        * platform/wince/SearchPopupMenuWince.cpp:
+        * platform/wince/SharedTimerWince.cpp:
+        (WebCore::initializeOffScreenTimerWindow):
+
 2009-12-26  Eric Seidel  <eric at webkit.org>
 
         No review, rolling out r52554.
diff --git a/WebCore/platform/wince/MIMETypeRegistryWince.cpp b/WebCore/platform/wince/MIMETypeRegistryWince.cpp
index 2ecde48..b6ead9b 100644
--- a/WebCore/platform/wince/MIMETypeRegistryWince.cpp
+++ b/WebCore/platform/wince/MIMETypeRegistryWince.cpp
@@ -27,6 +27,7 @@
 #include "config.h"
 #include "MIMETypeRegistry.h"
 
+#include <wtf/HashMap.h>
 #include <windows.h>
 #include <winreg.h>
 
diff --git a/WebCore/platform/wince/SearchPopupMenuWince.cpp b/WebCore/platform/wince/SearchPopupMenuWince.cpp
index ca11292..756b7cf 100644
--- a/WebCore/platform/wince/SearchPopupMenuWince.cpp
+++ b/WebCore/platform/wince/SearchPopupMenuWince.cpp
@@ -21,6 +21,7 @@
 #include "SearchPopupMenu.h"
 
 #include "AtomicString.h"
+#include "NotImplemented.h"
 
 namespace WebCore {
 
diff --git a/WebCore/platform/wince/SharedTimerWince.cpp b/WebCore/platform/wince/SharedTimerWince.cpp
index ca2f104..a620a10 100644
--- a/WebCore/platform/wince/SharedTimerWince.cpp
+++ b/WebCore/platform/wince/SharedTimerWince.cpp
@@ -85,7 +85,7 @@ static void initializeOffScreenTimerWindow()
     RegisterClass(&wcex);
 
     timerWindowHandle = CreateWindow(kTimerWindowClassName, 0, 0,
-       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, HWND_MESSAGE, 0, Page::instanceHandle(), 0);
+       CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, 0, 0, Page::instanceHandle(), 0);
 }
 
 void setSharedTimerFiredFunction(void (*f)())

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list