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_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.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 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 scoped_ptr<media::AudioOutputIPC> ipc_; | 83 scoped_ptr<media::AudioOutputIPC> ipc_; |
84 | 84 |
85 scoped_refptr<base::MessageLoopProxy> main_message_loop_proxy_; | 85 scoped_refptr<base::MessageLoopProxy> main_message_loop_proxy_; |
86 scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_; | 86 scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_; |
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_IMPL_H_ | 93 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_H_ |
OLD | NEW |