Title: [165169] trunk/Source/_javascript_Core
Revision
165169
Author
[email protected]
Date
2014-03-05 20:27:31 -0800 (Wed, 05 Mar 2014)

Log Message

Web Inspector: Reduce RWI message frequency
https://bugs.webkit.org/show_bug.cgi?id=129767

Patch by Joseph Pecoraro <[email protected]> on 2014-03-05
Reviewed by Timothy Hatcher.

This used to be 0.2s and changed by accident to 0.02s.

* inspector/remote/RemoteInspector.mm:
(Inspector::RemoteInspector::pushListingSoon):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (165168 => 165169)


--- trunk/Source/_javascript_Core/ChangeLog	2014-03-06 04:15:51 UTC (rev 165168)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-03-06 04:27:31 UTC (rev 165169)
@@ -1,3 +1,15 @@
+2014-03-05  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Reduce RWI message frequency
+        https://bugs.webkit.org/show_bug.cgi?id=129767
+
+        Reviewed by Timothy Hatcher.
+
+        This used to be 0.2s and changed by accident to 0.02s.
+
+        * inspector/remote/RemoteInspector.mm:
+        (Inspector::RemoteInspector::pushListingSoon):
+
 2014-03-05  Commit Queue  <[email protected]>
 
         Unreviewed, rolling out r165141, r165157, and r165158.

Modified: trunk/Source/_javascript_Core/inspector/remote/RemoteInspector.mm (165168 => 165169)


--- trunk/Source/_javascript_Core/inspector/remote/RemoteInspector.mm	2014-03-06 04:15:51 UTC (rev 165168)
+++ trunk/Source/_javascript_Core/inspector/remote/RemoteInspector.mm	2014-03-06 04:27:31 UTC (rev 165169)
@@ -361,7 +361,7 @@
         return;
 
     m_pushScheduled = true;
-    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.02 * NSEC_PER_SEC), dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
+    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 0.2 * NSEC_PER_SEC), dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
         std::lock_guard<std::mutex> lock(m_mutex);
         if (m_pushScheduled)
             pushListingNow();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to