Index: content/child/child_process.cc |
diff --git a/content/child/child_process.cc b/content/child/child_process.cc |
index 6d50239f14b885707427a145768343af92d8e9f8..8411653ad8c2b699a8e1b5900b81d87d6c8d7b3d 100644 |
--- a/content/child/child_process.cc |
+++ b/content/child/child_process.cc |
@@ -38,7 +38,8 @@ ChildProcess::ChildProcess() : ChildProcess(base::ThreadPriority::NORMAL) {} |
ChildProcess::ChildProcess(base::ThreadPriority io_thread_priority) |
: ref_count_(0), |
- shutdown_event_(true, false), |
+ shutdown_event_(base::WaitableEvent::ResetPolicy::MANUAL, |
+ base::WaitableEvent::InitialState::NOT_SIGNALED), |
io_thread_("Chrome_ChildIOThread") { |
DCHECK(!g_lazy_tls.Pointer()->Get()); |
g_lazy_tls.Pointer()->Set(this); |