Index: content/renderer/raster_worker_pool.cc |
diff --git a/content/renderer/raster_worker_pool.cc b/content/renderer/raster_worker_pool.cc |
index e8ed13bf8cad0012e91abc13f9b2d6d3b23b117a..65c0014082744a7711a9588b0f1aeaf79cdc8ad5 100644 |
--- a/content/renderer/raster_worker_pool.cc |
+++ b/content/renderer/raster_worker_pool.cc |
@@ -155,11 +155,8 @@ void RasterWorkerPool::Start(int num_threads) { |
#endif |
scoped_ptr<base::SimpleThread> thread(new RasterWorkerPoolThread( |
- base::StringPrintf("CompositorTileWorker%u", |
- static_cast<unsigned>(threads_.size() + 1)) |
- .c_str(), |
- thread_options, this, background_categories, |
- &has_ready_to_run_background_tasks_cv_)); |
+ "CompositorTileWorkerBackground", thread_options, this, |
+ background_categories, &has_ready_to_run_background_tasks_cv_)); |
thread->Start(); |
threads_.push_back(std::move(thread)); |
} |