Title: [161005] trunk/Source/WebKit2
Revision
161005
Author
[email protected]
Date
2013-12-23 11:04:11 -0800 (Mon, 23 Dec 2013)

Log Message

Include <condition_variable>, not <thread>.

* Platform/CoreIPC/Connection.h:
* Shared/BlockingResponseMap.h:
* UIProcess/API/mac/WKPrintingView.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (161004 => 161005)


--- trunk/Source/WebKit2/ChangeLog	2013-12-23 18:49:50 UTC (rev 161004)
+++ trunk/Source/WebKit2/ChangeLog	2013-12-23 19:04:11 UTC (rev 161005)
@@ -1,3 +1,11 @@
+2013-12-23  Anders Carlsson  <[email protected]>
+
+        Include <condition_variable>, not <thread>.
+
+        * Platform/CoreIPC/Connection.h:
+        * Shared/BlockingResponseMap.h:
+        * UIProcess/API/mac/WKPrintingView.h:
+
 2013-12-23  Lucas Forschler  <[email protected]>
 
         <rdar://problem/15682948> Update copyright strings

Modified: trunk/Source/WebKit2/Platform/CoreIPC/Connection.h (161004 => 161005)


--- trunk/Source/WebKit2/Platform/CoreIPC/Connection.h	2013-12-23 18:49:50 UTC (rev 161004)
+++ trunk/Source/WebKit2/Platform/CoreIPC/Connection.h	2013-12-23 19:04:11 UTC (rev 161005)
@@ -34,7 +34,7 @@
 #include "MessageReceiver.h"
 #include "WorkQueue.h"
 #include <atomic>
-#include <thread>
+#include <condition_variable>
 #include <wtf/Deque.h>
 #include <wtf/Forward.h>
 #include <wtf/PassRefPtr.h>

Modified: trunk/Source/WebKit2/Shared/BlockingResponseMap.h (161004 => 161005)


--- trunk/Source/WebKit2/Shared/BlockingResponseMap.h	2013-12-23 18:49:50 UTC (rev 161004)
+++ trunk/Source/WebKit2/Shared/BlockingResponseMap.h	2013-12-23 19:04:11 UTC (rev 161005)
@@ -26,7 +26,7 @@
 #ifndef BlockingResponseMap_h
 #define BlockingResponseMap_h
 
-#include <thread>
+#include <condition_variable>
 #include <wtf/HashMap.h>
 
 template<typename T>

Modified: trunk/Source/WebKit2/UIProcess/API/mac/WKPrintingView.h (161004 => 161005)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKPrintingView.h	2013-12-23 18:49:50 UTC (rev 161004)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKPrintingView.h	2013-12-23 19:04:11 UTC (rev 161005)
@@ -24,7 +24,7 @@
  */
 
 #import <WebCore/IntRectHash.h>
-#import <thread>
+#import <condition_variable>
 #import <wtf/RetainPtr.h>
 
 @class WKPrintingViewData;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to