| Index: components/nacl/loader/nonsfi/nonsfi_listener.cc
|
| diff --git a/components/nacl/loader/nonsfi/nonsfi_listener.cc b/components/nacl/loader/nonsfi/nonsfi_listener.cc
|
| index 2352fee1be2b6b83da6182c144eb4600e49d805f..2ea4d5988cb5588c5f59892783202fabfd062ea6 100644
|
| --- a/components/nacl/loader/nonsfi/nonsfi_listener.cc
|
| +++ b/components/nacl/loader/nonsfi/nonsfi_listener.cc
|
| @@ -28,9 +28,11 @@
|
| namespace nacl {
|
| namespace nonsfi {
|
|
|
| -NonSfiListener::NonSfiListener() : io_thread_("NaCl_IOThread"),
|
| - shutdown_event_(true, false),
|
| - key_fd_map_(new std::map<std::string, int>) {
|
| +NonSfiListener::NonSfiListener()
|
| + : io_thread_("NaCl_IOThread"),
|
| + shutdown_event_(base::WaitableEvent::ResetPolicy::MANUAL,
|
| + base::WaitableEvent::InitialState::NOT_SIGNALED),
|
| + key_fd_map_(new std::map<std::string, int>) {
|
| io_thread_.StartWithOptions(
|
| base::Thread::Options(base::MessageLoop::TYPE_IO, 0));
|
| }
|
|
|