diff options
Diffstat (limited to 'base/condition_variable.h')
-rw-r--r-- | base/condition_variable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/condition_variable.h b/base/condition_variable.h index 9307d8c..bceef5e 100644 --- a/base/condition_variable.h +++ b/base/condition_variable.h @@ -80,7 +80,7 @@ class ConditionVariable { // Wait() releases the caller's critical section atomically as it starts to // sleep, and the reacquires it when it is signaled. void Wait(); - void TimedWait(const TimeDelta& max_time); + void TimedWait(const base::TimeDelta& max_time); // Broadcast() revives all waiting threads. void Broadcast(); |