cc: In SyncFromActiveLayer, drop all tiles not in the recorded_viewport.
commit86ad492770a6a72130affe24b982e57bca9da7b0
authordanakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>
Wed, 18 Jun 2014 07:12:36 +0000 (18 07:12 +0000)
committerdanakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>
Wed, 18 Jun 2014 07:12:36 +0000 (18 07:12 +0000)
tree29bef7fda7e4fa060e1631303b0d1f4c5143ad64
parente08ba1b9e4b34142bd116639dc4fd08a50fd8051
cc: In SyncFromActiveLayer, drop all tiles not in the recorded_viewport.

Currently we do a walk over all tiles in the pending tree's pile, but
there can be 1 million x 1 million tiles on some pages, which makes this
method take multiple _seconds_ to complete.

These loops were added in r184525 which gave the tradeoffs that led to
them, which are that we want to only use a single pile for all the tiles
on this layer, but we don't want raster tiles on the active layer (when
this activates) that can't be rastered by the pile they are attached to.

Instead of walking every pile-tile, to find the tiles that are not
present in the current recording and invalidate them, we expand
invalidations outside the interest rect to cover the full recording tiles,
and we expand invalidation inside the interest rect to include any raster
tiles that don't have a recording (such as in the offscreen animating gif
case). We give this expanded invalidation to the pending layer, causing
it to drop rastered tiles from the active tree that intersect with an
unrecorded area.

R=enne
BUG=371839

Review URL: https://codereview.chromium.org/294163009

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@277964 0039d316-1c4b-4281-b951-d872f2087c98
cc/base/tiling_data.cc
cc/base/tiling_data.h
cc/base/tiling_data_unittest.cc
cc/layers/picture_layer.cc
cc/layers/picture_layer_impl.cc
cc/resources/picture_pile.cc
cc/resources/picture_pile.h
cc/resources/picture_pile_base.h
cc/resources/picture_pile_unittest.cc