| 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_RTC_PEER_CONNECTION_HANDLER_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ | 6 #define CONTENT_RENDERER_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 15 #include "base/single_thread_task_runner.h" | 15 #include "base/single_thread_task_runner.h" |
| 16 #include "base/threading/thread.h" | 16 #include "base/threading/thread.h" |
| 17 #include "base/threading/thread_checker.h" | 17 #include "base/threading/thread_checker.h" |
| 18 #include "content/common/content_export.h" | 18 #include "content/common/content_export.h" |
| 19 #include "content/renderer/media/webrtc/media_stream_track_metrics.h" | 19 #include "content/renderer/media/webrtc/media_stream_track_metrics.h" |
| 20 #include "third_party/WebKit/public/platform/WebMediaStreamSource.h" | 20 #include "third_party/WebKit/public/platform/WebMediaStreamSource.h" |
| 21 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h" | 21 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h" |
| 22 #include "third_party/WebKit/public/platform/WebRTCStatsRequest.h" | 22 #include "third_party/WebKit/public/platform/WebRTCStatsRequest.h" |
| 23 #include "third_party/WebKit/public/platform/WebRTCStatsResponse.h" | 23 #include "third_party/WebKit/public/platform/WebRTCStatsResponse.h" |
| 24 | 24 |
| 25 namespace blink { | 25 namespace blink { |
| 26 class WebFrame; | 26 class WebFrame; |
| 27 class WebRTCDataChannelHandler; | 27 class WebRTCDataChannelHandler; |
| 28 class WebRTCOfferOptions; | 28 class WebRTCOfferOptions; |
| 29 class WebRTCPeerConnectionHandlerClient; |
| 29 } | 30 } |
| 30 | 31 |
| 31 namespace content { | 32 namespace content { |
| 32 | 33 |
| 33 class PeerConnectionDependencyFactory; | 34 class PeerConnectionDependencyFactory; |
| 34 class PeerConnectionTracker; | 35 class PeerConnectionTracker; |
| 35 class RemoteMediaStreamImpl; | 36 class RemoteMediaStreamImpl; |
| 36 class RtcDataChannelHandler; | 37 class RtcDataChannelHandler; |
| 37 class RTCMediaConstraints; | 38 class RTCMediaConstraints; |
| 38 class WebRtcMediaStreamAdapter; | 39 class WebRtcMediaStreamAdapter; |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 scoped_refptr<webrtc::UMAObserver> uma_observer_; | 247 scoped_refptr<webrtc::UMAObserver> uma_observer_; |
| 247 base::TimeTicks ice_connection_checking_start_; | 248 base::TimeTicks ice_connection_checking_start_; |
| 248 base::WeakPtrFactory<RTCPeerConnectionHandler> weak_factory_; | 249 base::WeakPtrFactory<RTCPeerConnectionHandler> weak_factory_; |
| 249 | 250 |
| 250 DISALLOW_COPY_AND_ASSIGN(RTCPeerConnectionHandler); | 251 DISALLOW_COPY_AND_ASSIGN(RTCPeerConnectionHandler); |
| 251 }; | 252 }; |
| 252 | 253 |
| 253 } // namespace content | 254 } // namespace content |
| 254 | 255 |
| 255 #endif // CONTENT_RENDERER_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ | 256 #endif // CONTENT_RENDERER_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ |
| OLD | NEW |