Commit c96c5009 authored by gab's avatar gab Committed by Commit bot

Migrate WaitableEvent to enum-based constructor in remoting/

Change automated with clang-tidy (details @ https://crbug.com/612843#c13)

BUG=612843

Review-Url: https://codereview.chromium.org/2023353002
Cr-Commit-Position: refs/heads/master@{#397213}
parent 2a699298
......@@ -50,7 +50,9 @@ struct AutoThread::StartupData {
base::WaitableEvent event;
explicit StartupData(base::MessageLoop::Type type)
: loop_type(type), event(false, false) {}
: loop_type(type),
event(base::WaitableEvent::ResetPolicy::AUTOMATIC,
base::WaitableEvent::InitialState::NOT_SIGNALED) {}
};
// static
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment