| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_PEER_CONNECTION_TRACKER_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_PEER_CONNECTION_TRACKER_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_PEER_CONNECTION_TRACKER_H_ | 6 #define CONTENT_RENDERER_MEDIA_PEER_CONNECTION_TRACKER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/threading/thread_checker.h" | 13 #include "base/threading/thread_checker.h" |
| 14 #include "content/public/renderer/render_thread_observer.h" | 14 #include "content/public/renderer/render_thread_observer.h" |
| 15 #include "ipc/ipc_platform_file.h" | 15 #include "ipc/ipc_platform_file.h" |
| 16 #include "third_party/WebKit/public/platform/WebMediaStream.h" | 16 #include "third_party/WebKit/public/platform/WebMediaStream.h" |
| 17 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandlerClient.h
" | 17 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandlerClient.h
" |
| 18 #include "third_party/WebKit/public/platform/WebRTCSessionDescription.h" | 18 #include "third_party/WebKit/public/platform/WebRTCSessionDescription.h" |
| 19 #include "third_party/webrtc/api/peerconnectioninterface.h" | 19 #include "third_party/webrtc/api/peerconnectioninterface.h" |
| 20 | 20 |
| 21 namespace blink { | 21 namespace blink { |
| 22 class WebFrame; | 22 class WebFrame; |
| 23 class WebMediaConstraints; | 23 class WebMediaConstraints; |
| 24 class WebRTCAnswerOptions; | 24 class WebRTCAnswerOptions; |
| 25 class WebRTCICECandidate; | 25 class WebRTCICECandidate; |
| 26 class WebRTCOfferOptions; | 26 class WebRTCOfferOptions; |
| 27 class WebString; | |
| 28 class WebRTCSessionDescription; | 27 class WebRTCSessionDescription; |
| 29 class WebUserMediaRequest; | 28 class WebUserMediaRequest; |
| 30 } // namespace blink | 29 } // namespace blink |
| 31 | 30 |
| 32 namespace webrtc { | 31 namespace webrtc { |
| 33 class DataChannelInterface; | 32 class DataChannelInterface; |
| 34 } // namespace webrtc | 33 } // namespace webrtc |
| 35 | 34 |
| 36 namespace content { | 35 namespace content { |
| 37 class RTCPeerConnectionHandler; | 36 class RTCPeerConnectionHandler; |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 int next_local_id_; | 218 int next_local_id_; |
| 220 base::ThreadChecker main_thread_; | 219 base::ThreadChecker main_thread_; |
| 221 RenderThread* send_target_for_test_; | 220 RenderThread* send_target_for_test_; |
| 222 | 221 |
| 223 DISALLOW_COPY_AND_ASSIGN(PeerConnectionTracker); | 222 DISALLOW_COPY_AND_ASSIGN(PeerConnectionTracker); |
| 224 }; | 223 }; |
| 225 | 224 |
| 226 } // namespace content | 225 } // namespace content |
| 227 | 226 |
| 228 #endif // CONTENT_RENDERER_MEDIA_PEER_CONNECTION_TRACKER_H_ | 227 #endif // CONTENT_RENDERER_MEDIA_PEER_CONNECTION_TRACKER_H_ |
| OLD | NEW |