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

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 handler unit test. 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698