// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/webrtc_overrides/rtc_base/event.h" #include "base/time/time.h" namespace rtc { WaitableEvent; Event::Event() : … { … } Event::Event(bool manual_reset, bool initially_signaled) : … { … } Event::~Event() { … } void Event::Set() { … } void Event::Reset() { … } bool Event::Wait(webrtc::TimeDelta give_up_after) { … } } // namespace rtc