Title: [163293] trunk/Source/_javascript_Core
Revision
163293
Author
m...@apple.com
Date
2014-02-03 00:27:26 -0800 (Mon, 03 Feb 2014)

Log Message

Correctly address Darin’s review comment on the last change.

* runtime/Watchdog.h: Changed an OS(DARWIN) guard around formerly PLATFORM(MAC)-only member
variables to the equivalent OS(DARWIN) && !PLATFORM(EFL) && !PLATFORM(GTK).

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (163292 => 163293)


--- trunk/Source/_javascript_Core/ChangeLog	2014-02-03 08:19:13 UTC (rev 163292)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-02-03 08:27:26 UTC (rev 163293)
@@ -1,5 +1,12 @@
 2014-02-03  Dan Bernstein  <m...@apple.com>
 
+        Correctly address Darin’s review comment on the last change.
+
+        * runtime/Watchdog.h: Changed an OS(DARWIN) guard around formerly PLATFORM(MAC)-only member
+        variables to the equivalent OS(DARWIN) && !PLATFORM(EFL) && !PLATFORM(GTK).
+
+2014-02-03  Dan Bernstein  <m...@apple.com>
+
         Stop using PLATFORM(MAC) in _javascript_Core except where it means “OS X but not iOS”
         https://bugs.webkit.org/show_bug.cgi?id=128098
 

Modified: trunk/Source/_javascript_Core/runtime/Watchdog.h (163292 => 163293)


--- trunk/Source/_javascript_Core/runtime/Watchdog.h	2014-02-03 08:19:13 UTC (rev 163292)
+++ trunk/Source/_javascript_Core/runtime/Watchdog.h	2014-02-03 08:27:26 UTC (rev 163293)
@@ -93,7 +93,7 @@
     void* m_callbackData1;
     void* m_callbackData2;
 
-#if OS(DARWIN)
+#if OS(DARWIN) && !PLATFORM(EFL) && !PLATFORM(GTK)
     dispatch_queue_t m_queue;
     dispatch_source_t m_timer;
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to