Title: [115633] trunk/Source/WebKit/chromium
Revision
115633
Author
[email protected]
Date
2012-04-30 07:51:15 -0700 (Mon, 30 Apr 2012)

Log Message

[Chromium] Use new syntax to call currentTime directly
https://bugs.webkit.org/show_bug.cgi?id=85187

Reviewed by Kentaro Hara.

Part of a refactoring series. See tracking bug 82948.

* src/ChromiumCurrentTime.cpp:
(WTF::currentTime):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (115632 => 115633)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-04-30 14:48:58 UTC (rev 115632)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-04-30 14:51:15 UTC (rev 115633)
@@ -1,5 +1,17 @@
 2012-04-30  Mark Pilgrim  <[email protected]>
 
+        [Chromium] Use new syntax to call currentTime directly
+        https://bugs.webkit.org/show_bug.cgi?id=85187
+
+        Reviewed by Kentaro Hara.
+
+        Part of a refactoring series. See tracking bug 82948.
+
+        * src/ChromiumCurrentTime.cpp:
+        (WTF::currentTime):
+
+2012-04-30  Mark Pilgrim  <[email protected]>
+
         [Chromium] Use new syntax to call currentThread directly
         https://bugs.webkit.org/show_bug.cgi?id=85185
 

Modified: trunk/Source/WebKit/chromium/src/ChromiumCurrentTime.cpp (115632 => 115633)


--- trunk/Source/WebKit/chromium/src/ChromiumCurrentTime.cpp	2012-04-30 14:48:58 UTC (rev 115632)
+++ trunk/Source/WebKit/chromium/src/ChromiumCurrentTime.cpp	2012-04-30 14:51:15 UTC (rev 115633)
@@ -38,7 +38,7 @@
 
 double currentTime()
 {
-    return WebKit::webKitPlatformSupport()->currentTime();
+    return WebKit::Platform::current()->currentTime();
 }
 
 double monotonicallyIncreasingTime()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to