Title: [215244] trunk/Source/_javascript_Core
Revision
215244
Author
[email protected]
Date
2017-04-11 11:39:09 -0700 (Tue, 11 Apr 2017)

Log Message

Unreviewed, build fix for CF ports after r215241
https://bugs.webkit.org/show_bug.cgi?id=170725

* heap/GCActivityCallback.cpp:
(JSC::GCActivityCallback::nextFireTime):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (215243 => 215244)


--- trunk/Source/_javascript_Core/ChangeLog	2017-04-11 18:29:03 UTC (rev 215243)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-04-11 18:39:09 UTC (rev 215244)
@@ -1,5 +1,13 @@
 2017-04-11  Yusuke Suzuki  <[email protected]>
 
+        Unreviewed, build fix for CF ports after r215241
+        https://bugs.webkit.org/show_bug.cgi?id=170725
+
+        * heap/GCActivityCallback.cpp:
+        (JSC::GCActivityCallback::nextFireTime):
+
+2017-04-11  Yusuke Suzuki  <[email protected]>
+
         [WebCore][JSC] ResourceUsageData.{timeOfNextEdenCollection,timeOfNextFullCollection} should be MonotonicTime
         https://bugs.webkit.org/show_bug.cgi?id=170725
 

Modified: trunk/Source/_javascript_Core/heap/GCActivityCallback.cpp (215243 => 215244)


--- trunk/Source/_javascript_Core/heap/GCActivityCallback.cpp	2017-04-11 18:29:03 UTC (rev 215243)
+++ trunk/Source/_javascript_Core/heap/GCActivityCallback.cpp	2017-04-11 18:39:09 UTC (rev 215244)
@@ -78,7 +78,7 @@
 
 MonotonicTime GCActivityCallback::nextFireTime()
 {
-    return MonotonicTime::now() + (CFRunLoopTimerGetNextFireDate(m_timer.get()) - CFAbsoluteTimeGetCurrent());
+    return MonotonicTime::now() + Seconds(CFRunLoopTimerGetNextFireDate(m_timer.get()) - CFAbsoluteTimeGetCurrent());
 }
 #else
 void GCActivityCallback::scheduleTimer(Seconds newDelay)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to