net: Add SetUploadStream method to URLFetcher.
[chromium-blink-merge.git] / media / audio / audio_output_dispatcher.cc
bloba03ae6e083ee275da43e88f0074b8bf23e5652ad
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "media/audio/audio_output_dispatcher.h"
7 #include "base/logging.h"
8 #include "base/single_thread_task_runner.h"
10 namespace media {
12 AudioOutputDispatcher::AudioOutputDispatcher(
13 AudioManager* audio_manager,
14 const AudioParameters& params,
15 const std::string& device_id)
16 : audio_manager_(audio_manager),
17 task_runner_(audio_manager->GetTaskRunner()),
18 params_(params),
19 device_id_(device_id) {
20 // We expect to be instantiated on the audio thread. Otherwise the
21 // |task_runner_| member will point to the wrong message loop!
22 DCHECK(audio_manager->GetTaskRunner()->BelongsToCurrentThread());
25 AudioOutputDispatcher::~AudioOutputDispatcher() {
26 DCHECK(task_runner_->BelongsToCurrentThread());
29 } // namespace media