| Index: cc/raster/task.cc
|
| diff --git a/cc/raster/task.cc b/cc/raster/task.cc
|
| index 3ead51fcc4d97b945f746de46506e4fe4136219b..28f79eb21c81d2b13d935c47fc4e2fce229503a8 100644
|
| --- a/cc/raster/task.cc
|
| +++ b/cc/raster/task.cc
|
| @@ -13,11 +13,7 @@ TaskState::TaskState() : value_(Value::NEW) {}
|
| TaskState::~TaskState() {
|
| DCHECK(value_ != Value::RUNNING)
|
| << "Running task should never get destroyed.";
|
| - // TODO(prashant.n): Remove NEW, once all the tests follow the task life
|
| - // cycle correctly. Few tests still do not take care of task states.
|
| - // crbug.com/613814.
|
| - DCHECK(value_ == Value::NEW || value_ == Value::FINISHED ||
|
| - value_ == Value::CANCELED)
|
| + DCHECK(value_ == Value::FINISHED || value_ == Value::CANCELED)
|
| << "Task, if scheduled, should get concluded either in FINISHED or "
|
| "CANCELED state.";
|
| }
|
|
|