Title: [197604] trunk/Source/WebCore
Revision
197604
Author
[email protected]
Date
2016-03-04 17:34:21 -0800 (Fri, 04 Mar 2016)

Log Message

Convert DOMTimer interval from int to std::chromo::milliseconds
https://bugs.webkit.org/show_bug.cgi?id=155051

Speculative build fix.

* inspector/TimelineRecordFactory.cpp:
(WebCore::TimelineRecordFactory::createTimerInstallData):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (197603 => 197604)


--- trunk/Source/WebCore/ChangeLog	2016-03-05 01:32:04 UTC (rev 197603)
+++ trunk/Source/WebCore/ChangeLog	2016-03-05 01:34:21 UTC (rev 197604)
@@ -3,6 +3,16 @@
         Convert DOMTimer interval from int to std::chromo::milliseconds
         https://bugs.webkit.org/show_bug.cgi?id=155051
 
+        Speculative build fix.
+
+        * inspector/TimelineRecordFactory.cpp:
+        (WebCore::TimelineRecordFactory::createTimerInstallData):
+
+2016-03-04  Gavin Barraclough  <[email protected]>
+
+        Convert DOMTimer interval from int to std::chromo::milliseconds
+        https://bugs.webkit.org/show_bug.cgi?id=155051
+
         iOS build fix
 
         * page/DOMTimer.cpp:

Modified: trunk/Source/WebCore/inspector/TimelineRecordFactory.cpp (197603 => 197604)


--- trunk/Source/WebCore/inspector/TimelineRecordFactory.cpp	2016-03-05 01:32:04 UTC (rev 197603)
+++ trunk/Source/WebCore/inspector/TimelineRecordFactory.cpp	2016-03-05 01:34:21 UTC (rev 197604)
@@ -99,7 +99,7 @@
 {
     Ref<InspectorObject> data = ""
     data->setInteger(ASCIILiteral("timerId"), timerId);
-    data->setInteger(ASCIILiteral("timeout"), timeout.count());
+    data->setInteger(ASCIILiteral("timeout"), (int)timeout.count());
     data->setBoolean(ASCIILiteral("singleShot"), singleShot);
     return data;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to