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 <memory> | 8 #include <memory> |
| 9 #include <string> |
9 | 10 |
10 #include "base/macros.h" | 11 #include "base/macros.h" |
11 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
12 #include "media/audio/audio_output_ipc.h" | 13 #include "media/audio/audio_output_ipc.h" |
13 | 14 |
14 namespace media { | 15 namespace media { |
15 class AudioParameters; | 16 class AudioParameters; |
16 } | 17 } |
17 | 18 |
18 namespace base { | 19 namespace base { |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 | 92 |
92 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_; | 93 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_; |
93 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; | 94 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; |
94 | 95 |
95 DISALLOW_COPY_AND_ASSIGN(PepperPlatformAudioOutput); | 96 DISALLOW_COPY_AND_ASSIGN(PepperPlatformAudioOutput); |
96 }; | 97 }; |
97 | 98 |
98 } // namespace content | 99 } // namespace content |
99 | 100 |
100 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_H_ | 101 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_H_ |
OLD | NEW |