Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: content/renderer/media/media_stream_dependency_factory.h

Issue 15741003: Moving WebRTC logging related files from content to chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed some errors. Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698