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

Unified Diff: cc/resources/tile_manager.h

Issue 13859012: cc: Remove cheapness estimator usage from tile manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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
Index: cc/resources/tile_manager.h
diff --git a/cc/resources/tile_manager.h b/cc/resources/tile_manager.h
index 944b54de5e9f11f5b1b7c5248a5f5efae2fe4d81..5ced837e6ca3ff666d53fc18e7b78cebbc474883 100644
--- a/cc/resources/tile_manager.h
+++ b/cc/resources/tile_manager.h
@@ -65,7 +65,6 @@ class CC_EXPORT TileManager : public WorkerPoolClient {
TileManager(TileManagerClient* client,
ResourceProvider *resource_provider,
size_t num_raster_threads,
- bool use_cheapess_estimator,
bool use_color_estimator,
bool prediction_benchmarking,
RenderingStatsInstrumentation* rendering_stats_instrumentation);
@@ -131,7 +130,6 @@ class CC_EXPORT TileManager : public WorkerPoolClient {
client_->ScheduleManageTiles();
manage_tiles_pending_ = true;
}
- void UpdateCheapTasksTimeLimit();
void AnalyzeTile(Tile* tile);
void GatherPixelRefsForTile(Tile* tile);
void DispatchImageDecodeTasksForTile(Tile* tile);
@@ -164,8 +162,6 @@ class CC_EXPORT TileManager : public WorkerPoolClient {
skia::LazyPixelRef* pixel_ref,
RenderingStatsInstrumentation* stats_instrumentation);
- static void RecordCheapnessPredictorResults(bool is_predicted_cheap,
- bool is_actually_cheap);
static void RecordSolidColorPredictorResults(const SkColor* actual_colors,
size_t color_count,
bool is_predicted_solid,
@@ -198,7 +194,6 @@ class CC_EXPORT TileManager : public WorkerPoolClient {
RenderingStatsInstrumentation* rendering_stats_instrumentation_;
- bool use_cheapness_estimator_;
bool use_color_estimator_;
bool prediction_benchmarking_;
bool did_initialize_visible_tile_;

Powered by Google App Engine
This is Rietveld 408576698