[Webkit-unassigned] [Bug 141559] WorkQueue should support concurrent queues

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Feb 13 12:01:25 PST 2015


https://bugs.webkit.org/show_bug.cgi?id=141559

--- Comment #8 from Sam Weinig <sam at webkit.org> ---
Comment on attachment 246528
  --> https://bugs.webkit.org/attachment.cgi?id=246528
without the qos change

View in context: https://bugs.webkit.org/attachment.cgi?id=246528&action=review

> Source/WebKit2/Shared/mac/SecItemShim.cpp:181
> +    connection->addWorkQueueMessageReceiver(Messages::SecItemShim::messageReceiverName(), &m_queue.get(), this);

You can do m_queue.ptr() here.

> Source/WebKit2/WebProcess/Plugins/PluginProcessConnectionManager.cpp:61
> +    connection->addWorkQueueMessageReceiver(Messages::PluginProcessConnectionManager::messageReceiverName(), &m_queue.get(), this);

&m_queue.get() -> m_queue.ptr()

> Source/WebKit2/WebProcess/WebPage/EventDispatcher.cpp:90
> +    connection->addWorkQueueMessageReceiver(Messages::EventDispatcher::messageReceiverName(), &m_queue.get(), this);

&m_queue.get() -> m_queue.ptr()

> Source/WebKit2/WebProcess/WebPage/ViewUpdateDispatcher.cpp:55
> +    connection->addWorkQueueMessageReceiver(Messages::ViewUpdateDispatcher::messageReceiverName(), &m_queue.get(), this);

&m_queue.get() -> m_queue.ptr()

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150213/da9b2c9a/attachment-0002.html>


More information about the webkit-unassigned mailing list