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