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

Unified Diff: cc/raster/task_graph_runner.cc

Issue 1787453003: Test dynamic priorities on android (1F + 1B) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/raster/task_graph_runner.h ('k') | cc/raster/task_graph_work_queue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/raster/task_graph_runner.cc
diff --git a/cc/raster/task_graph_runner.cc b/cc/raster/task_graph_runner.cc
index 4f1af43ad43901309131886aa2dd6d5c6de1343a..670dd794da63b2fdadef12847578a27d7d48c00a 100644
--- a/cc/raster/task_graph_runner.cc
+++ b/cc/raster/task_graph_runner.cc
@@ -5,6 +5,7 @@
#include "cc/raster/task_graph_runner.h"
#include <algorithm>
+#include <iomanip>
#include <utility>
#include "base/atomic_sequence_num.h"
@@ -13,7 +14,7 @@
namespace cc {
-Task::Task() : will_run_(false), did_run_(false) {}
+Task::Task() : will_run_(false), did_run_(false), runner_(nullptr) {}
Task::~Task() {
DCHECK(!will_run_);
« no previous file with comments | « cc/raster/task_graph_runner.h ('k') | cc/raster/task_graph_work_queue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698