| Index: src/cancelable-task.h
|
| diff --git a/src/cancelable-task.h b/src/cancelable-task.h
|
| index 74afa6019cf9123d689aae39391854b6be19a1ca..b1d62aad4bd595428d0b73da7497b67bca15a712 100644
|
| --- a/src/cancelable-task.h
|
| +++ b/src/cancelable-task.h
|
| @@ -40,8 +40,7 @@
|
| bool TryAbort(uint32_t id);
|
|
|
| // Cancels all remaining registered tasks and waits for tasks that are
|
| - // already running. After this function is called all subsequent new tasks
|
| - // will be cancelled on creation.
|
| + // already running.
|
| void CancelAndWait();
|
|
|
| private:
|
| @@ -59,8 +58,6 @@
|
| // well as waiting for background tasks on {CancelAndWait}.
|
| base::ConditionVariable cancelable_tasks_barrier_;
|
| base::Mutex mutex_;
|
| -
|
| - bool canceled_;
|
|
|
| friend class Cancelable;
|
|
|
|
|