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_INPUT_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_INPUT_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_INPUT_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_INPUT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "media/audio/audio_input_ipc.h" | 15 #include "media/audio/audio_input_ipc.h" |
16 #include "media/audio/audio_parameters.h" | 16 #include "media/audio/audio_parameters.h" |
17 | 17 |
18 class GURL; | 18 class GURL; |
19 | 19 |
20 namespace base { | 20 namespace base { |
| 21 class SingleThreadTaskRunner; |
21 class MessageLoopProxy; | 22 class MessageLoopProxy; |
22 } | 23 } |
23 | 24 |
24 namespace media { | 25 namespace media { |
25 class AudioParameters; | 26 class AudioParameters; |
26 } | 27 } |
27 | 28 |
28 namespace content { | 29 namespace content { |
29 | 30 |
30 class PepperAudioInputHost; | 31 class PepperAudioInputHost; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 | 98 |
98 // The client to notify when the stream is created. THIS MUST ONLY BE | 99 // The client to notify when the stream is created. THIS MUST ONLY BE |
99 // ACCESSED ON THE MAIN THREAD. | 100 // ACCESSED ON THE MAIN THREAD. |
100 PepperAudioInputHost* client_; | 101 PepperAudioInputHost* client_; |
101 | 102 |
102 // Used to send/receive IPC. THIS MUST ONLY BE ACCESSED ON THE | 103 // Used to send/receive IPC. THIS MUST ONLY BE ACCESSED ON THE |
103 // I/O THREAD. | 104 // I/O THREAD. |
104 scoped_ptr<media::AudioInputIPC> ipc_; | 105 scoped_ptr<media::AudioInputIPC> ipc_; |
105 | 106 |
106 scoped_refptr<base::MessageLoopProxy> main_message_loop_proxy_; | 107 scoped_refptr<base::MessageLoopProxy> main_message_loop_proxy_; |
107 scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_; | 108 scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; |
108 | 109 |
109 // The frame containing the Pepper widget. | 110 // The frame containing the Pepper widget. |
110 int render_frame_id_; | 111 int render_frame_id_; |
111 | 112 |
112 // The unique ID to identify the opened device. THIS MUST ONLY BE ACCESSED ON | 113 // The unique ID to identify the opened device. THIS MUST ONLY BE ACCESSED ON |
113 // THE MAIN THREAD. | 114 // THE MAIN THREAD. |
114 std::string label_; | 115 std::string label_; |
115 | 116 |
116 // Initialized on the main thread and accessed on the I/O thread afterwards. | 117 // Initialized on the main thread and accessed on the I/O thread afterwards. |
117 media::AudioParameters params_; | 118 media::AudioParameters params_; |
118 | 119 |
119 // Whether we have tried to create an audio stream. THIS MUST ONLY BE ACCESSED | 120 // Whether we have tried to create an audio stream. THIS MUST ONLY BE ACCESSED |
120 // ON THE I/O THREAD. | 121 // ON THE I/O THREAD. |
121 bool create_stream_sent_; | 122 bool create_stream_sent_; |
122 | 123 |
123 // Whether we have a pending request to open a device. We have to make sure | 124 // Whether we have a pending request to open a device. We have to make sure |
124 // there isn't any pending request before this object goes away. | 125 // there isn't any pending request before this object goes away. |
125 // THIS MUST ONLY BE ACCESSED ON THE MAIN THREAD. | 126 // THIS MUST ONLY BE ACCESSED ON THE MAIN THREAD. |
126 bool pending_open_device_; | 127 bool pending_open_device_; |
127 // THIS MUST ONLY BE ACCESSED ON THE MAIN THREAD. | 128 // THIS MUST ONLY BE ACCESSED ON THE MAIN THREAD. |
128 int pending_open_device_id_; | 129 int pending_open_device_id_; |
129 | 130 |
130 DISALLOW_COPY_AND_ASSIGN(PepperPlatformAudioInput); | 131 DISALLOW_COPY_AND_ASSIGN(PepperPlatformAudioInput); |
131 }; | 132 }; |
132 | 133 |
133 } // namespace content | 134 } // namespace content |
134 | 135 |
135 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_INPUT_H_ | 136 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_INPUT_H_ |
OLD | NEW |