[webkit-reviews] review granted: [Bug 62175] [GTK] Implement monotonicallyIncreasingClock() : [Attachment 102574] Implementation of monotonically increasing clock on GTK

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Aug 8 01:15:11 PDT 2011


Martin Robinson <mrobinson at webkit.org> has granted Devdatta
<pwjd73 at motorola.com>'s request for review:
Bug 62175: [GTK] Implement monotonicallyIncreasingClock()
https://bugs.webkit.org/show_bug.cgi?id=62175

Attachment 102574: Implementation of monotonically increasing clock on GTK
https://bugs.webkit.org/attachment.cgi?id=102574&action=review

------- Additional Comments from Martin Robinson <mrobinson at webkit.org>
View in context: https://bugs.webkit.org/attachment.cgi?id=102574&action=review


Loooks good to me. I'll land this one.

> Source/JavaScriptCore/wtf/CurrentTime.cpp:334
> +    gint64 nowMicroSecs = g_get_monotonic_time();
> +    return static_cast<double>(nowMicroSecs / 1000000.0);

This should probably just be return static_cast<double>(g_get_monotonic_time()
/ 1000000.0);


More information about the webkit-reviews mailing list