OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_PULSE_AUDIO_MIXER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_PULSE_AUDIO_MIXER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_PULSE_AUDIO_MIXER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_PULSE_AUDIO_MIXER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/lock.h" | 11 #include "base/lock.h" |
12 #include "base/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
13 #include "base/thread.h" | 13 #include "base/threading/thread.h" |
14 | 14 |
15 struct pa_context; | 15 struct pa_context; |
16 struct pa_cvolume; | 16 struct pa_cvolume; |
17 struct pa_threaded_mainloop; | 17 struct pa_threaded_mainloop; |
18 struct pa_operation; | 18 struct pa_operation; |
19 struct pa_sink_info; | 19 struct pa_sink_info; |
20 | 20 |
21 namespace chromeos { | 21 namespace chromeos { |
22 | 22 |
23 class PulseAudioMixer { | 23 class PulseAudioMixer { |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 | 139 |
140 DISALLOW_COPY_AND_ASSIGN(PulseAudioMixer); | 140 DISALLOW_COPY_AND_ASSIGN(PulseAudioMixer); |
141 }; | 141 }; |
142 | 142 |
143 } // namespace chromeos | 143 } // namespace chromeos |
144 | 144 |
145 DISABLE_RUNNABLE_METHOD_REFCOUNT(chromeos::PulseAudioMixer); | 145 DISABLE_RUNNABLE_METHOD_REFCOUNT(chromeos::PulseAudioMixer); |
146 | 146 |
147 #endif // CHROME_BROWSER_CHROMEOS_PULSE_AUDIO_MIXER_H_ | 147 #endif // CHROME_BROWSER_CHROMEOS_PULSE_AUDIO_MIXER_H_ |
148 | 148 |
OLD | NEW |