Title: [142183] trunk/Source/WTF
Revision
142183
Author
[email protected]
Date
2013-02-07 14:53:35 -0800 (Thu, 07 Feb 2013)

Log Message

Fix an incorrect comment from r142163

Unreviewed.

Patch by Benjamin Poulain <[email protected]> on 2013-02-07

* wtf/MainThread.h:
I accidentally copied PLATFORM(IOS) instead of USE(WEB_THREAD) for the #ifdef closing.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (142182 => 142183)


--- trunk/Source/WTF/ChangeLog	2013-02-07 22:52:40 UTC (rev 142182)
+++ trunk/Source/WTF/ChangeLog	2013-02-07 22:53:35 UTC (rev 142183)
@@ -1,5 +1,14 @@
 2013-02-07  Benjamin Poulain  <[email protected]>
 
+        Fix an incorrect comment from r142163
+
+        Unreviewed.
+
+        * wtf/MainThread.h:
+        I accidentally copied PLATFORM(IOS) instead of USE(WEB_THREAD) for the #ifdef closing.
+
+2013-02-07  Benjamin Poulain  <[email protected]>
+
         Upstream iOS isWebThread() and isUIThread()
         https://bugs.webkit.org/show_bug.cgi?id=109130
 

Modified: trunk/Source/WTF/wtf/MainThread.h (142182 => 142183)


--- trunk/Source/WTF/wtf/MainThread.h	2013-02-07 22:52:40 UTC (rev 142182)
+++ trunk/Source/WTF/wtf/MainThread.h	2013-02-07 22:53:35 UTC (rev 142183)
@@ -57,9 +57,8 @@
 #else
 inline bool isWebThread() { return isMainThread(); }
 inline bool isUIThread() { return isMainThread(); }
-#endif // PLATFORM(IOS)
+#endif // PLATFORM(WEB_THREAD)
 
-
 void initializeGCThreads();
 
 #if ENABLE(PARALLEL_GC)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to