OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_WEBRTC_PEER_CONNECTION_DEPENDENCY_FACTORY_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_PEER_CONNECTION_DEPENDENCY_FACTORY_H_ |
6 #define CONTENT_RENDERER_MEDIA_WEBRTC_PEER_CONNECTION_DEPENDENCY_FACTORY_H_ | 6 #define CONTENT_RENDERER_MEDIA_WEBRTC_PEER_CONNECTION_DEPENDENCY_FACTORY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 } | 28 } |
29 | 29 |
30 namespace rtc { | 30 namespace rtc { |
31 class NetworkManager; | 31 class NetworkManager; |
32 class PacketSocketFactory; | 32 class PacketSocketFactory; |
33 class Thread; | 33 class Thread; |
34 } | 34 } |
35 | 35 |
36 namespace blink { | 36 namespace blink { |
37 class WebFrame; | 37 class WebFrame; |
38 class WebMediaConstraints; | |
39 class WebMediaStream; | 38 class WebMediaStream; |
40 class WebMediaStreamSource; | |
41 class WebMediaStreamTrack; | |
42 class WebRTCPeerConnectionHandler; | 39 class WebRTCPeerConnectionHandler; |
43 class WebRTCPeerConnectionHandlerClient; | 40 class WebRTCPeerConnectionHandlerClient; |
44 } | 41 } |
45 | 42 |
46 namespace content { | 43 namespace content { |
47 | 44 |
48 class IpcNetworkManager; | 45 class IpcNetworkManager; |
49 class IpcPacketSocketFactory; | 46 class IpcPacketSocketFactory; |
50 class WebRtcAudioDeviceImpl; | 47 class WebRtcAudioDeviceImpl; |
51 class WebRtcLoggingHandlerImpl; | |
52 class WebRtcLoggingMessageFilter; | |
53 struct StreamDeviceInfo; | |
54 | 48 |
55 // Object factory for RTC PeerConnections. | 49 // Object factory for RTC PeerConnections. |
56 class CONTENT_EXPORT PeerConnectionDependencyFactory | 50 class CONTENT_EXPORT PeerConnectionDependencyFactory |
57 : NON_EXPORTED_BASE(base::MessageLoop::DestructionObserver), | 51 : NON_EXPORTED_BASE(base::MessageLoop::DestructionObserver), |
58 NON_EXPORTED_BASE(public base::NonThreadSafe) { | 52 NON_EXPORTED_BASE(public base::NonThreadSafe) { |
59 public: | 53 public: |
60 PeerConnectionDependencyFactory( | 54 PeerConnectionDependencyFactory( |
61 P2PSocketDispatcher* p2p_socket_dispatcher); | 55 P2PSocketDispatcher* p2p_socket_dispatcher); |
62 ~PeerConnectionDependencyFactory() override; | 56 ~PeerConnectionDependencyFactory() override; |
63 | 57 |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 rtc::Thread* worker_thread_; | 155 rtc::Thread* worker_thread_; |
162 base::Thread chrome_signaling_thread_; | 156 base::Thread chrome_signaling_thread_; |
163 base::Thread chrome_worker_thread_; | 157 base::Thread chrome_worker_thread_; |
164 | 158 |
165 DISALLOW_COPY_AND_ASSIGN(PeerConnectionDependencyFactory); | 159 DISALLOW_COPY_AND_ASSIGN(PeerConnectionDependencyFactory); |
166 }; | 160 }; |
167 | 161 |
168 } // namespace content | 162 } // namespace content |
169 | 163 |
170 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_PEER_CONNECTION_DEPENDENCY_FACTORY_H_ | 164 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_PEER_CONNECTION_DEPENDENCY_FACTORY_H_ |
OLD | NEW |