RESOLVED FIXED Bug 84490
PageGroupLoadDeferrer needs to take a ReasonForSuspension argument
https://bugs.webkit.org/show_bug.cgi?id=84490
Summary PageGroupLoadDeferrer needs to take a ReasonForSuspension argument
Brady Eidson
Reported 2012-04-20 13:50:18 PDT
PageGroupLoadDeferrer needs to take a ReasonForSuspension argument There's a long standing comment: // NOTE: if PageGroupLoadDeferrer is ever used for tasks other than showing a modal window or sheet, // the constructor will need to take a ActiveDOMObject::ReasonForSuspension. As we resolve https://bugs.webkit.org/show_bug.cgi?id=84488 that comment is no longer a suggestion towards some vague future. Also relevant to radar <rdar://problem/10484294>
Attachments
Patch v1 - Refactor to add a ReasonForSuspension argument (13.46 KB, patch)
2012-04-20 14:15 PDT, Brady Eidson
andersca: review+
Brady Eidson
Comment 1 2012-04-20 14:15:11 PDT
Created attachment 138162 [details] Patch v1 - Refactor to add a ReasonForSuspension argument
Anders Carlsson
Comment 2 2012-04-20 14:18:27 PDT
Comment on attachment 138162 [details] Patch v1 - Refactor to add a ReasonForSuspension argument View in context: https://bugs.webkit.org/attachment.cgi?id=138162&action=review > Source/WebCore/dom/Document.h:1486 > + bool m_suspendedScheduledTasks; m_suspendedScheduledTasks sounds like it would be a container for suspended scheduled tasks. Maybe m_scheduledTasksAreSuspended or something that indicates that it's a boolean?
Brady Eidson
Comment 3 2012-04-20 14:19:03 PDT
(In reply to comment #2) > (From update of attachment 138162 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=138162&action=review > > > Source/WebCore/dom/Document.h:1486 > > + bool m_suspendedScheduledTasks; > > m_suspendedScheduledTasks sounds like it would be a container for suspended scheduled tasks. Maybe m_scheduledTasksAreSuspended or something that indicates that it's a boolean? Sounds good. Thanks!
Brady Eidson
Comment 4 2012-04-20 14:29:31 PDT
Note You need to log in before you can comment on or make changes to this bug.