Title: [164829] trunk/Source/_javascript_Core
Revision
164829
Author
commit-qu...@webkit.org
Date
2014-02-27 13:50:14 -0800 (Thu, 27 Feb 2014)

Log Message

Web Inspector: Better name for RemoteInspectorDebuggableConnection dispatch queue
https://bugs.webkit.org/show_bug.cgi?id=129443

Patch by Joseph Pecoraro <pecor...@apple.com> on 2014-02-27
Reviewed by Timothy Hatcher.

This queue is specific to the JSContext debuggable connections,
there is no XPC involved. Give it a better name.

* inspector/remote/RemoteInspectorDebuggableConnection.mm:
(Inspector::RemoteInspectorDebuggableConnection::RemoteInspectorDebuggableConnection):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (164828 => 164829)


--- trunk/Source/_javascript_Core/ChangeLog	2014-02-27 21:41:27 UTC (rev 164828)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-02-27 21:50:14 UTC (rev 164829)
@@ -1,3 +1,16 @@
+2014-02-27  Joseph Pecoraro  <pecor...@apple.com>
+
+        Web Inspector: Better name for RemoteInspectorDebuggableConnection dispatch queue
+        https://bugs.webkit.org/show_bug.cgi?id=129443
+
+        Reviewed by Timothy Hatcher.
+
+        This queue is specific to the JSContext debuggable connections,
+        there is no XPC involved. Give it a better name.
+
+        * inspector/remote/RemoteInspectorDebuggableConnection.mm:
+        (Inspector::RemoteInspectorDebuggableConnection::RemoteInspectorDebuggableConnection):
+
 2014-02-27  David Kilzer  <ddkil...@apple.com>
 
         Remove jsc symlink if it already exists

Modified: trunk/Source/_javascript_Core/inspector/remote/RemoteInspectorDebuggableConnection.mm (164828 => 164829)


--- trunk/Source/_javascript_Core/inspector/remote/RemoteInspectorDebuggableConnection.mm	2014-02-27 21:41:27 UTC (rev 164828)
+++ trunk/Source/_javascript_Core/inspector/remote/RemoteInspectorDebuggableConnection.mm	2014-02-27 21:50:14 UTC (rev 164829)
@@ -47,7 +47,7 @@
     // Web debuggables must be accessed on the main queue (or the WebThread on iOS). Signal that with a NULL m_queueForDebuggable.
     // However, _javascript_ debuggables can be accessed from any thread/queue, so we create a queue for each _javascript_ debuggable.
     if (type == RemoteInspectorDebuggable::_javascript_)
-        m_queueForDebuggable = dispatch_queue_create("com.apple._javascript_Core.remote-inspector-xpc-connection", DISPATCH_QUEUE_SERIAL);
+        m_queueForDebuggable = dispatch_queue_create("com.apple._javascript_Core.remote-inspector-debuggable-connection", DISPATCH_QUEUE_SERIAL);
 }
 
 RemoteInspectorDebuggableConnection::~RemoteInspectorDebuggableConnection()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to