Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3409)

Unified Diff: cc/resources/tile_manager.h

Issue 671653005: SetNeedsRedraw directly when updating a visible tile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pinchblurmerge-test: in-lthi Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/resources/tile.h ('k') | cc/resources/tile_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/tile_manager.h
diff --git a/cc/resources/tile_manager.h b/cc/resources/tile_manager.h
index f5bea383141a38c325f695ed2247e9b7561331a9..1eba480213b85b106eff5ddbd9d6e5f766211379 100644
--- a/cc/resources/tile_manager.h
+++ b/cc/resources/tile_manager.h
@@ -60,6 +60,12 @@ class CC_EXPORT TileManagerClient {
virtual void BuildRasterQueue(RasterTilePriorityQueue* queue,
TreePriority tree_priority) = 0;
+ // Called when all tiles from the previous BuildRasterQueue have been
vmpstr 2014/10/31 15:46:30 drive by nit: This isn't entirely true... It would
danakj 2014/10/31 15:47:30 OK thanks I wasn't really sure what to write here,
+ // processed. Each BuildRasterQueue call is followed by either another
+ // BuildRasterQueue call (when some tiles were processed but not all), or a
+ // FinishedRasterQueue() call.
+ virtual void FinishedRasterQueue() = 0;
+
// Given an empty eviction tile priority queue, this will build a priority
// queue that will return tiles in order in which they should be evicted.
// Note if the queue was previous built, Reset must be called on it.
@@ -104,8 +110,7 @@ class CC_EXPORT TileManager : public RasterizerClient,
void ManageTiles(const GlobalStateThatImpactsTilePriority& state);
- // Returns true when visible tiles have been initialized.
- bool UpdateVisibleTiles();
+ void UpdateVisibleTiles();
scoped_refptr<Tile> CreateTile(RasterSource* raster_source,
const gfx::Size& tile_size,
@@ -248,7 +253,6 @@ class CC_EXPORT TileManager : public RasterizerClient,
RenderingStatsInstrumentation* rendering_stats_instrumentation_;
- bool did_initialize_visible_tile_;
bool did_check_for_completed_tasks_since_last_schedule_tasks_;
bool did_oom_on_last_assign_;
« no previous file with comments | « cc/resources/tile.h ('k') | cc/resources/tile_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698