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_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ |
6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ | 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 scoped_refptr<VideoCaptureImplManager> vc_manager_; | 209 scoped_refptr<VideoCaptureImplManager> vc_manager_; |
210 scoped_refptr<P2PSocketDispatcher> p2p_socket_dispatcher_; | 210 scoped_refptr<P2PSocketDispatcher> p2p_socket_dispatcher_; |
211 scoped_refptr<WebRtcAudioDeviceImpl> audio_device_; | 211 scoped_refptr<WebRtcAudioDeviceImpl> audio_device_; |
212 | 212 |
213 // PeerConnection threads. signaling_thread_ is created from the | 213 // PeerConnection threads. signaling_thread_ is created from the |
214 // "current" chrome thread. | 214 // "current" chrome thread. |
215 talk_base::Thread* signaling_thread_; | 215 talk_base::Thread* signaling_thread_; |
216 talk_base::Thread* worker_thread_; | 216 talk_base::Thread* worker_thread_; |
217 base::Thread chrome_worker_thread_; | 217 base::Thread chrome_worker_thread_; |
218 | 218 |
219 bool webrtc_log_open_; | |
220 | |
221 DISALLOW_COPY_AND_ASSIGN(MediaStreamDependencyFactory); | 219 DISALLOW_COPY_AND_ASSIGN(MediaStreamDependencyFactory); |
222 }; | 220 }; |
223 | 221 |
224 } // namespace content | 222 } // namespace content |
225 | 223 |
226 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ | 224 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ |
OLD | NEW |