OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "media/audio/audio_output_ipc.h" | 11 #include "media/audio/audio_output_ipc.h" |
12 | 12 |
13 namespace media { | 13 namespace media { |
14 class AudioParameters; | 14 class AudioParameters; |
15 } | 15 } |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 class SingleThreadTaskRunner; | 18 class SingleThreadTaskRunner; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 | 84 |
85 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_; | 85 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_; |
86 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; | 86 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; |
87 | 87 |
88 DISALLOW_COPY_AND_ASSIGN(PepperPlatformAudioOutput); | 88 DISALLOW_COPY_AND_ASSIGN(PepperPlatformAudioOutput); |
89 }; | 89 }; |
90 | 90 |
91 } // namespace content | 91 } // namespace content |
92 | 92 |
93 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_H_ | 93 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_H_ |
OLD | NEW |