RESOLVED WONTFIX 45773
Add isMainFrame flag to scroll functions
https://bugs.webkit.org/show_bug.cgi?id=45773
Summary Add isMainFrame flag to scroll functions
João Paulo Rechi Vita
Reported 2010-09-14 12:52:01 PDT
[EFL] Add isMainFrame flag to scroll functions
Attachments
Patch (38.18 KB, patch)
2010-09-14 12:59 PDT, João Paulo Rechi Vita
kenneth: review-
kenneth: commit-queue-
João Paulo Rechi Vita
Comment 1 2010-09-14 12:59:11 PDT
João Paulo Rechi Vita
Comment 2 2010-09-14 13:04:26 PDT
This patch adds a parameter to scroll functions to tell if we're scrolling the main frame or an inner-frame. This information is needed by the new EFL tiled backing-store, submitted upstream on #45397.
Kenneth Rohde Christiansen
Comment 3 2010-09-29 19:48:05 PDT
Comment on attachment 67592 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=67592&action=review I don't really understand why this is needed, and as such I cannot say if this is the best way of accomplishing what you are trying to do. r- for this reason. > WebCore/ChangeLog:8 > + This information is needed by the new EFL tiled backing store. This would probably need more explanation. Why is that needed for the EFL tiled backing store. - you should explain that instead > WebCore/loader/EmptyClients.h:151 > + virtual void invalidateContentsForSlowScroll(const IntSize&, const IntRect&, bool, bool) {}; > + virtual void scroll(const IntSize&, const IntRect&, const IntRect&, bool) { } We are trying to more away from bool arguments. Consider using enums instead.
João Paulo Rechi Vita
Comment 4 2010-12-09 11:00:03 PST
(In reply to comment #3) > (From update of attachment 67592 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=67592&action=review > > I don't really understand why this is needed, and as such I cannot say if this is the best way of accomplishing what you are trying to do. > > r- for this reason. > > > WebCore/ChangeLog:8 > > + This information is needed by the new EFL tiled backing store. > > This would probably need more explanation. Why is that needed for the EFL tiled backing store. - you should explain that instead > When when the scroll is on the main frame we want to simply scroll the backing store instead of doing repaints. To accomplish that we need to know whether a scroll is on the main frame or on a inner frame when processing the scroll. Although this is not necessary with frame flattening, we want to support frames as well. If you have any suggestion on other ways to do this I'll be happy to hear. > > WebCore/loader/EmptyClients.h:151 > > + virtual void invalidateContentsForSlowScroll(const IntSize&, const IntRect&, bool, bool) {}; > > + virtual void scroll(const IntSize&, const IntRect&, const IntRect&, bool) { } > > We are trying to more away from bool arguments. Consider using enums instead. I'll have to send an updated version of the patch anyway, because we found a small bug in this modifications (that's why this bug has been left for so long). I'll take this into consideration when sending the new version. But could please share your thoughts on the overall approach before I do so? Thanks.
Antonio Gomes
Comment 5 2011-01-19 14:39:41 PST
Is it still needed?
Antonio Gomes
Comment 6 2011-02-15 08:54:53 PST
(In reply to comment #5) > Is it still needed? Seems not.
Note You need to log in before you can comment on or make changes to this bug.