// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/audio/scoped_task_runner_observer.h" #include "base/functional/bind.h" #include "base/synchronization/waitable_event.h" #include "base/task/single_thread_task_runner.h" namespace media { ScopedTaskRunnerObserver::ScopedTaskRunnerObserver( const scoped_refptr<base::SingleThreadTaskRunner>& task_runner) : … { … } ScopedTaskRunnerObserver::~ScopedTaskRunnerObserver() { … } void ScopedTaskRunnerObserver::ObserveLoopDestruction( bool enable, base::WaitableEvent* done) { … } } // namespace media.