Chromium Code Reviews| Index: base/synchronization/waitable_event_posix.cc |
| diff --git a/base/synchronization/waitable_event_posix.cc b/base/synchronization/waitable_event_posix.cc |
| index 64d4376fe5654b486ea1e43cef7dc71a08fad215..bb5e8d7b7540c4a0eeb738b97aea429d0c81da82 100644 |
| --- a/base/synchronization/waitable_event_posix.cc |
| +++ b/base/synchronization/waitable_event_posix.cc |
| @@ -36,6 +36,11 @@ |
| namespace base { |
| +WaitableEvent::WaitableEvent(ResetPolicy reset_policy, |
|
danakj
2016/05/31 20:06:41
Can you group this with the other constructor more
gab
2016/05/31 21:00:13
Done.
|
| + InitialState initial_state) |
| + : WaitableEvent(reset_policy == ResetPolicy::MANUAL, |
| + initial_state == InitialState::SIGNALED) {} |
| + |
| // ----------------------------------------------------------------------------- |
| // This is just an abstract base class for waking the two types of waiters |
| // ----------------------------------------------------------------------------- |