RESOLVED FIXED 49605
Make WebPageProxy::decidePolicyForMIMEType a tad synchronous
https://bugs.webkit.org/show_bug.cgi?id=49605
Summary Make WebPageProxy::decidePolicyForMIMEType a tad synchronous
Anders Carlsson
Reported 2010-11-16 10:47:32 PST
Make WebPageProxy::decidePolicyForMIMEType a tad synchronous
Attachments
Patch (7.12 KB, patch)
2010-11-16 10:49 PST, Anders Carlsson
no flags
Patch (8.65 KB, patch)
2010-11-16 10:56 PST, Anders Carlsson
sam: review+
Anders Carlsson
Comment 1 2010-11-16 10:49:31 PST
Anders Carlsson
Comment 2 2010-11-16 10:56:16 PST
Sam Weinig
Comment 3 2010-11-16 10:57:49 PST
Comment on attachment 74012 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=74012&action=review > WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:533 > > - webPage->send(Messages::WebPageProxy::DecidePolicyForMIMEType(m_frame->frameID(), MIMEType, url, listenerID)); > + bool receivedPolicyAction; > + uint64_t policyAction; > + uint64_t downloadID; > + if (!webPage->sendSync(Messages::WebPageProxy::DecidePolicyForMIMEType(m_frame->frameID(), MIMEType, url, listenerID), Messages::WebPageProxy::DecidePolicyForMIMEType::Reply(receivedPolicyAction, policyAction, downloadID))) > + return; > + > + if (receivedPolicyAction) > + m_frame->didReceivePolicyDecision(listenerID, static_cast<PolicyAction>(policyAction), downloadID); I think this deserves a comment indicating why this needs to be sync for now and how we may be able to mitigate this issue in the future (if that is desired).
Anders Carlsson
Comment 4 2010-11-16 11:02:54 PST
Note You need to log in before you can comment on or make changes to this bug.