// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "services/audio/realtime_audio_thread.h" namespace audio { RealtimeAudioThread::RealtimeAudioThread(const std::string& name, base::TimeDelta realtime_period) : … { … } RealtimeAudioThread::~RealtimeAudioThread() { … } #if BUILDFLAG(IS_APPLE) base::TimeDelta RealtimeAudioThread::GetRealtimePeriod() { return realtime_period_; } #endif } // namespace audio