| 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 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class WaitableEvent; | 23 class WaitableEvent; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace media { | 26 namespace media { |
| 27 class GpuVideoAcceleratorFactories; | 27 class GpuVideoAcceleratorFactories; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace rtc { | 30 namespace rtc { |
| 31 class NetworkManager; | |
| 32 class PacketSocketFactory; | |
| 33 class Thread; | 31 class Thread; |
| 34 } | 32 } |
| 35 | 33 |
| 36 namespace blink { | 34 namespace blink { |
| 37 class WebFrame; | 35 class WebFrame; |
| 38 class WebMediaStream; | |
| 39 class WebRTCPeerConnectionHandler; | 36 class WebRTCPeerConnectionHandler; |
| 40 class WebRTCPeerConnectionHandlerClient; | 37 class WebRTCPeerConnectionHandlerClient; |
| 41 } | 38 } |
| 42 | 39 |
| 43 namespace content { | 40 namespace content { |
| 44 | 41 |
| 45 class IpcNetworkManager; | 42 class IpcNetworkManager; |
| 46 class IpcPacketSocketFactory; | 43 class IpcPacketSocketFactory; |
| 47 class WebRtcAudioDeviceImpl; | 44 class WebRtcAudioDeviceImpl; |
| 48 | 45 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 rtc::Thread* worker_thread_; | 152 rtc::Thread* worker_thread_; |
| 156 base::Thread chrome_signaling_thread_; | 153 base::Thread chrome_signaling_thread_; |
| 157 base::Thread chrome_worker_thread_; | 154 base::Thread chrome_worker_thread_; |
| 158 | 155 |
| 159 DISALLOW_COPY_AND_ASSIGN(PeerConnectionDependencyFactory); | 156 DISALLOW_COPY_AND_ASSIGN(PeerConnectionDependencyFactory); |
| 160 }; | 157 }; |
| 161 | 158 |
| 162 } // namespace content | 159 } // namespace content |
| 163 | 160 |
| 164 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_PEER_CONNECTION_DEPENDENCY_FACTORY_H_ | 161 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_PEER_CONNECTION_DEPENDENCY_FACTORY_H_ |
| OLD | NEW |