Title: [103916] trunk/Source/WebKit2
Revision
103916
Author
wei...@apple.com
Date
2012-01-02 15:59:48 -0800 (Mon, 02 Jan 2012)

Log Message

Fix windows build.

* Platform/CoreIPC/Connection.h:
* Platform/CoreIPC/win/ConnectionWin.cpp:
* Platform/RunLoop.h:
Missing declarations/includes of BinarySemaphore.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (103915 => 103916)


--- trunk/Source/WebKit2/ChangeLog	2012-01-02 23:55:40 UTC (rev 103915)
+++ trunk/Source/WebKit2/ChangeLog	2012-01-02 23:59:48 UTC (rev 103916)
@@ -1,5 +1,14 @@
 2012-01-02  Sam Weinig  <s...@webkit.org>
 
+        Fix windows build.
+
+        * Platform/CoreIPC/Connection.h:
+        * Platform/CoreIPC/win/ConnectionWin.cpp:
+        * Platform/RunLoop.h:
+        Missing declarations/includes of BinarySemaphore.
+
+2012-01-02  Sam Weinig  <s...@webkit.org>
+
         Move dispatchSentMessagesUntil out of the RunLoop class.
         https://bugs.webkit.org/show_bug.cgi?id=75320
 

Modified: trunk/Source/WebKit2/Platform/CoreIPC/Connection.h (103915 => 103916)


--- trunk/Source/WebKit2/Platform/CoreIPC/Connection.h	2012-01-02 23:55:40 UTC (rev 103915)
+++ trunk/Source/WebKit2/Platform/CoreIPC/Connection.h	2012-01-02 23:59:48 UTC (rev 103916)
@@ -54,6 +54,7 @@
 
 namespace CoreIPC {
 
+class BinarySemaphore;
 class MessageID;
     
 enum MessageSendFlags {

Modified: trunk/Source/WebKit2/Platform/CoreIPC/win/ConnectionWin.cpp (103915 => 103916)


--- trunk/Source/WebKit2/Platform/CoreIPC/win/ConnectionWin.cpp	2012-01-02 23:55:40 UTC (rev 103915)
+++ trunk/Source/WebKit2/Platform/CoreIPC/win/ConnectionWin.cpp	2012-01-02 23:59:48 UTC (rev 103916)
@@ -27,6 +27,7 @@
 #include "Connection.h"
 
 #include "ArgumentEncoder.h"
+#include "BinarySemaphore.h"
 #include <wtf/Functional.h>
 #include <wtf/RandomNumber.h>
 #include <wtf/text/WTFString.h>

Modified: trunk/Source/WebKit2/Platform/RunLoop.h (103915 => 103916)


--- trunk/Source/WebKit2/Platform/RunLoop.h	2012-01-02 23:55:40 UTC (rev 103915)
+++ trunk/Source/WebKit2/Platform/RunLoop.h	2012-01-02 23:59:48 UTC (rev 103916)
@@ -43,10 +43,6 @@
 typedef int gboolean;
 #endif
 
-namespace CoreIPC {
-class BinarySemaphore;
-}
-
 class RunLoop {
 public:
     // Must be called from the main thread.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to