[Webkit-unassigned] [Bug 24152] Move the logic to do the unconfirmed message count and pending activity setting from WorkerMessagingProxy to Worker.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Feb 24 22:06:27 PST 2009


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





------- Comment #2 from levin at chromium.org  2009-02-24 22:06 PDT -------
Just one question, previously the code looked like this:
     return m_contextProxy->hasPendingActivity() ||
ActiveDOMObject::hasPendingActivity();

where

     m_contextProxy->hasPendingActivity() was "(m_unconfirmedMessageCount ||
m_workerThreadHadPendingActivity) && !m_askedToTerminate"

but now it is

     return m_unconfirmedMessageCount || m_workerContextHadPendingActivity ||
ActiveDOMObject::hasPendingActivity();

Why is the loss of the m_askedToTerminate condition ok?


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list