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

Unified Diff: cc/raster/synchronous_task_graph_runner.cc

Issue 1666283002: Reland - Refactor signaling in RWP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix refcounting issue. Created 4 years, 10 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/raster/synchronous_task_graph_runner.cc
diff --git a/cc/raster/synchronous_task_graph_runner.cc b/cc/raster/synchronous_task_graph_runner.cc
index 2f5055d87b163287c0fa73682135ef771577a5d0..1bb89b7ca1dd56538ad2ec14218ed739448896a1 100644
--- a/cc/raster/synchronous_task_graph_runner.cc
+++ b/cc/raster/synchronous_task_graph_runner.cc
@@ -84,7 +84,7 @@ bool SynchronousTaskGraphRunner::RunTask() {
const uint16_t category = found->first;
auto prioritized_task = work_queue_.GetNextTaskToRun(category);
- Task* task = prioritized_task.task;
+ Task* task = prioritized_task.task.get();
task->WillRun();
task->RunOnWorkerThread();
task->DidRun();

Powered by Google App Engine
This is Rietveld 408576698