Hello.
I want to support instant scroll to some point on the page.
Simple example - instant scroll to top of the page, to frame with (0, 0) coordinates.
But there is a problem with drawing full new frame for new position. On low end devices it is drawn slow.
So that I want to store somewhere those frames or tiles when the user see them.
And after instant scroll to some checkpoint, the browser should show this old cached frame till the new one will be ready.
I suppose i have to create new TilePriority and TileMemoryLimitPolicy to forbid to the browser to drop this tile.
But I think it would be better do it somewhere on render_widget level. It seems easy to deal with complete frames rather than tiles.
Does Chromium have something similar?
Could you give me some advice?