Title: [103200] trunk/Source/WebKit2
Revision
103200
Author
wei...@apple.com
Date
2011-12-18 17:43:47 -0800 (Sun, 18 Dec 2011)

Log Message

Another attempt to fix the windows build.

* Platform/win/WorkQueueWin.cpp:
(WorkQueue::performWorkOnRegisteredWorkThread):
(WorkQueue::dispatch):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (103199 => 103200)


--- trunk/Source/WebKit2/ChangeLog	2011-12-19 01:40:15 UTC (rev 103199)
+++ trunk/Source/WebKit2/ChangeLog	2011-12-19 01:43:47 UTC (rev 103200)
@@ -1,5 +1,13 @@
 2011-12-18  Sam Weinig  <s...@webkit.org>
 
+        Another attempt to fix the windows build.
+
+        * Platform/win/WorkQueueWin.cpp:
+        (WorkQueue::performWorkOnRegisteredWorkThread):
+        (WorkQueue::dispatch):
+
+2011-12-18  Sam Weinig  <s...@webkit.org>
+
         Try to fix the windows build.
 
         * Platform/win/WorkQueueWin.cpp:

Modified: trunk/Source/WebKit2/Platform/win/WorkQueueWin.cpp (103199 => 103200)


--- trunk/Source/WebKit2/Platform/win/WorkQueueWin.cpp	2011-12-19 01:40:15 UTC (rev 103199)
+++ trunk/Source/WebKit2/Platform/win/WorkQueueWin.cpp	2011-12-19 01:43:47 UTC (rev 103200)
@@ -149,7 +149,7 @@
             isValid = m_isValid;
             if (!isValid)
                 break;
-            workItemQueue[i]->function();
+            workItemQueue[i]->function()();
         }
         m_workItemQueueLock.lock();
     }
@@ -194,7 +194,7 @@
     ::DeleteTimerQueueEx(m_timerQueue, 0);
 }
 
-void WorkQueue::dispatch(const Function<void()>& function))
+void WorkQueue::dispatch(const Function<void()>& function)
 {
     MutexLocker locker(m_workItemQueueLock);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to